mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
* perf: remove CSS variables polyfill * style: fix missing calc value * perf: reduce some useless css vars
21 lines
425 B
Plaintext
21 lines
425 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-tabbar {
|
|
display: flex;
|
|
box-sizing: content-box;
|
|
width: 100%;
|
|
height: var(--tabbar-height, @tabbar-height);
|
|
background-color: var(--tabbar-background-color, @tabbar-background-color);
|
|
|
|
&--fixed {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
&--safe {
|
|
padding-bottom: constant(safe-area-inset-bottom);
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
}
|