47 lines
754 B
Plaintext

@import '../common/style/var.less';
@import '../common/style/theme.less';
:host {
flex: 1;
}
.van-tabbar-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
font-size: 12px;
line-height: 1;
.theme(color, '@gray-darker');
&__icon {
position: relative;
margin-bottom: 5px;
font-size: 18px;
&--dot {
&::after {
position: absolute;
top: 0;
right: -8px;
width: 8px;
height: 8px;
border-radius: 100%;
content: ' ';
.theme(background-color, '@red');
}
}
image {
display: block;
width: 30px;
height: 18px;
}
}
&--active {
.theme(color, '@blue');
}
}