mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
25 lines
516 B
Plaintext
25 lines
516 B
Plaintext
@import '../common/style/var.less';
|
|
@import '../common/style/theme.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;
|
|
.theme(padding, '0 @padding-base 0 @padding-md');
|
|
.theme(font-size, '@index-bar-index-font-size');
|
|
.theme(line-height, '@index-bar-index-line-height');
|
|
}
|
|
}
|