vant/src/tabbar-item/index.less
neverland b3146b9108
style: decentralized less var (#8369)
* style: decentralized less var

* chore: remove emtpy var file
2021-03-17 16:14:18 +08:00

37 lines
654 B
Plaintext

@import './var.less';
.van-tabbar-item {
display: flex;
flex: 1;
flex-direction: column;
align-items: center;
justify-content: center;
color: @tabbar-item-text-color;
font-size: @tabbar-item-font-size;
line-height: @tabbar-item-line-height;
cursor: pointer;
&__icon {
margin-bottom: @tabbar-item-margin-bottom;
font-size: @tabbar-item-icon-size;
.van-icon {
display: block;
}
img {
display: block;
height: 20px;
}
}
&--active {
color: @tabbar-item-active-color;
background-color: @tabbar-item-active-background-color;
}
.van-badge {
margin-top: @padding-base;
}
}