vant-weapp/packages/tab/index.pcss
2018-07-30 10:26:34 +08:00

51 lines
837 B
Plaintext

.van-tab {
height: 45px;
}
.van-tab__bd {
width: 100%;
display: flex;
flex-direction: row;
border-bottom: 1rpx solid #e5e5e5;
background: #fff;
}
.van-tab__bd--fixed {
position: fixed;
top: 0;
z-index: 2;
}
.van-tab__item {
flex: 1;
display: inline-block;
padding: 0 5px;
line-height: 0;
box-sizing: border-box;
overflow: hidden;
text-align: center;
}
.van-tab__title {
display: inline-block;
max-width: 100%;
height: 44px;
line-height: 44px;
overflow: hidden;
text-overflow: ellipsis;
box-sizing: border-box;
word-break: keep-all;
font-size: 14px;
color: #666;
}
.van-tab__item--selected .van-tab__title {
color: #f44;
border-bottom: 2px solid #f44;
}
.van-tab__bd--scroll {
display: block;
white-space: nowrap;
}
.van-tab__bd--scroll .van-tab__item {
min-width: 80px;
}