You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
815 B
SCSS

@import '../common/abstracts/variable';
@import '../common/abstracts/mixin';
.wot-theme-dark {
@include b(tabbar) {
background: $-dark-background;
}
}
@include b(tabbar) {
display: flex;
align-items: center;
flex-wrap: nowrap;
position: relative;
background: $-color-white;
height: $-tabbar-height;
@include m(round) {
margin-left: 32rpx;
margin-right: 32rpx;
border-radius: 999px;
box-shadow: $-tabbar-box-shadow;
}
@include m(default) {
@include when(border) {
@include halfPixelBorder('top');
}
}
@include when(fixed) {
position: fixed;
left: 0;
bottom: 0;
right: 0;
z-index: 500;
@include when(safe) {
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
}
}
}