neverland 1a7889590f
perf: remove CSS variables polyfill (#4487)
* perf: remove CSS variables polyfill

* style: fix missing calc value

* perf: reduce some useless css vars
2021-09-23 17:31:28 +08:00

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;
}
}