mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
22 lines
429 B
Plaintext
22 lines
429 B
Plaintext
@import '../common/style/var.less';
|
|
@import '../common/style/theme.less';
|
|
|
|
.van-tabbar {
|
|
display: flex;
|
|
box-sizing: content-box;
|
|
width: 100%;
|
|
.theme(height, '@tabbar-height');
|
|
.theme(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);
|
|
}
|
|
}
|