mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
* perf: remove CSS variables polyfill * style: fix missing calc value * perf: reduce some useless css vars
36 lines
505 B
Plaintext
36 lines
505 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-dropdown-item {
|
|
position: fixed;
|
|
right: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
|
|
&__option {
|
|
text-align: left;
|
|
|
|
&--active {
|
|
.van-dropdown-item__title,
|
|
.van-dropdown-item__icon {
|
|
color: var(
|
|
--dropdown-menu-option-active-color,
|
|
@dropdown-menu-option-active-color
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
&--up {
|
|
top: 0;
|
|
}
|
|
|
|
&--down {
|
|
bottom: 0;
|
|
}
|
|
|
|
&__icon {
|
|
display: block;
|
|
line-height: inherit;
|
|
}
|
|
}
|