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
28 lines
582 B
Plaintext
28 lines
582 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-index-bar {
|
|
position: relative;
|
|
|
|
&__sidebar {
|
|
position: fixed;
|
|
top: 50%;
|
|
right: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
transform: translateY(-50%);
|
|
user-select: none;
|
|
}
|
|
|
|
&__index {
|
|
font-weight: 500;
|
|
padding: 0 var(--padding-base, @padding-base) 0
|
|
var(--padding-md, @padding-md);
|
|
font-size: var(--index-bar-index-font-size, @index-bar-index-font-size);
|
|
line-height: var(
|
|
--index-bar-index-line-height,
|
|
@index-bar-index-line-height
|
|
);
|
|
}
|
|
}
|