mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
* perf: remove CSS variables polyfill * style: fix missing calc value * perf: reduce some useless css vars
36 lines
779 B
Plaintext
36 lines
779 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
:host {
|
|
flex: 1;
|
|
}
|
|
|
|
.van-tabbar-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
color: var(--tabbar-item-text-color, @tabbar-item-text-color);
|
|
font-size: var(--tabbar-item-font-size, @tabbar-item-font-size);
|
|
line-height: var(--tabbar-item-line-height, @tabbar-item-line-height);
|
|
|
|
&__icon {
|
|
position: relative;
|
|
margin-bottom: var(--tabbar-item-margin-bottom, @tabbar-item-margin-bottom);
|
|
font-size: var(--tabbar-item-icon-size, @tabbar-item-icon-size);
|
|
|
|
&__inner {
|
|
display: block;
|
|
min-width: 1em;
|
|
}
|
|
}
|
|
|
|
&--active {
|
|
color: var(--tabbar-item-active-color, @tabbar-item-active-color);
|
|
}
|
|
|
|
&__info {
|
|
margin-top: 2px;
|
|
}
|
|
}
|