neverland 1a7889590f
perf: remove CSS variables polyfill (#4487)
* perf: remove CSS variables polyfill

* style: fix missing calc value

* perf: reduce some useless css vars
2021-09-23 17:31:28 +08:00

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;
}
}