You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
407 B
23 lines
407 B
@import '../style/var';
|
|
|
|
.van-tabbar {
|
|
z-index: @tabbar-z-index;
|
|
display: flex;
|
|
box-sizing: content-box;
|
|
width: 100%;
|
|
height: @tabbar-height;
|
|
padding-bottom: constant(safe-area-inset-bottom);
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
background-color: @tabbar-background-color;
|
|
|
|
&--fixed {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
&--unfit {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|