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

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