mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
23 lines
477 B
Plaintext
23 lines
477 B
Plaintext
@import '../common/style/var';
|
|
@import '../common/style/theme';
|
|
|
|
.van-picker-column {
|
|
overflow: hidden;
|
|
text-align: center;
|
|
.theme(color, '@picker-option-text-color');
|
|
.theme(font-size, '@picker-option-font-size');
|
|
|
|
&__item {
|
|
padding: 0 5px;
|
|
|
|
&--selected {
|
|
.theme(font-weight, '@font-weight-bold');
|
|
.theme(color, '@picker-option-selected-text-color');
|
|
}
|
|
|
|
&--disabled {
|
|
.theme(opacity, '@picker-option-disabled-opacity');
|
|
}
|
|
}
|
|
}
|