mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* perf: remove CSS variables polyfill * style: fix missing calc value * perf: reduce some useless css vars
27 lines
781 B
Plaintext
27 lines
781 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-index-anchor {
|
|
padding: var(--index-anchor-padding, @index-anchor-padding);
|
|
color: var(--index-anchor-text-color, @index-anchor-text-color);
|
|
font-weight: var(--index-anchor-font-weight, @index-anchor-font-weight);
|
|
font-size: var(--index-anchor-font-size, @index-anchor-font-size);
|
|
line-height: var(--index-anchor-line-height, @index-anchor-line-height);
|
|
background-color: var(
|
|
--index-anchor-background-color,
|
|
@index-anchor-background-color
|
|
);
|
|
|
|
&--active {
|
|
right: 0;
|
|
left: 0;
|
|
color: var(
|
|
--index-anchor-active-text-color,
|
|
@index-anchor-active-text-color
|
|
);
|
|
background-color: var(
|
|
--index-anchor-active-background-color,
|
|
@index-anchor-active-background-color
|
|
);
|
|
}
|
|
}
|