You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
585 B
49 lines
585 B
.uni-flex {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.uni-flex-item {
|
|
flex: 1;
|
|
}
|
|
|
|
.uni-row {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.uni-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.uni-flex-center {
|
|
align-items: center;
|
|
}
|
|
|
|
.uni-flex-middle {
|
|
justify-content: center;
|
|
}
|
|
|
|
.uni-link {
|
|
color: #576b95;
|
|
font-size: 26upx;
|
|
}
|
|
|
|
.uni-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.uni-inline-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.uni-inline-item text {
|
|
margin-right: 20upx;
|
|
}
|
|
|
|
.uni-inline-item text:last-child {
|
|
margin-right: 0upx;
|
|
margin-left: 20upx;
|
|
}
|
|
|