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.
81 lines
1.1 KiB
81 lines
1.1 KiB
@import '@/uni_modules/uni-scss/variables.scss';
|
|
@import '@/uni_modules/vk-uview-ui/theme.scss';
|
|
|
|
.u-column,
|
|
.flex-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.flex-1 {
|
|
flex: 1;
|
|
}
|
|
.justify-space-around {
|
|
justify-content: space-around;
|
|
}
|
|
.justify-between {
|
|
justify-content: space-between;
|
|
}
|
|
.justify-end {
|
|
justify-content: end;
|
|
}
|
|
.align-center {
|
|
align-items: center;
|
|
}
|
|
.white {
|
|
background-color: #fff !important;
|
|
}
|
|
.red {
|
|
color: $u-type-error;
|
|
}
|
|
.green {
|
|
color: $u-type-success;
|
|
}
|
|
|
|
.mt-20 {
|
|
margin-top: 20rpx;
|
|
}
|
|
.ml-20 {
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.pa-20 {
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
.full-height {
|
|
height: 100%;
|
|
}
|
|
|
|
.font-bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.fixed-btn {
|
|
position: fixed !important;
|
|
width: 100%;
|
|
bottom: 0;
|
|
left: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.bg-white {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
|
|
.checklist-box.is-checked .radio__inner .radio__inner-icon {
|
|
background-color: #2979ff !important;
|
|
}
|
|
.uni-data-checklist .checklist-group .checklist-box.is--default.is-checked .radio__inner {
|
|
border-color: #2979ff !important;
|
|
}
|
|
|