mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
37 lines
687 B
Plaintext
37 lines
687 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%;
|
|
.theme(color, '@tabbar-item-text-color');
|
|
.theme(font-size, '@tabbar-item-font-size');
|
|
.theme(line-height, '@tabbar-item-line-height');
|
|
|
|
&__icon {
|
|
position: relative;
|
|
.theme(margin-bottom, '@tabbar-item-margin-bottom');
|
|
.theme(font-size, '@tabbar-item-icon-size');
|
|
|
|
&__inner {
|
|
display: block;
|
|
min-width: 1em;
|
|
}
|
|
}
|
|
|
|
&--active {
|
|
.theme(color, '@tabbar-item-active-color');
|
|
}
|
|
|
|
&__info {
|
|
margin-top: 2px;
|
|
}
|
|
}
|