37 lines
671 B
Plaintext
37 lines
671 B
Plaintext
.category-tabs {
|
|
background: #fff;
|
|
width: 100%;
|
|
}
|
|
|
|
.category-tabs__scroll {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.category-tabs__inner {
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 16rpx;
|
|
padding: 16rpx 24rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.category-tabs__pill {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 12rpx 32rpx;
|
|
border-radius: 32rpx;
|
|
background: #f5f5f5;
|
|
font-size: 28rpx;
|
|
color: rgba(0, 0, 0, 0.65);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.category-tabs__pill--active {
|
|
background: #f7ee47;
|
|
font-weight: 600;
|
|
color: rgba(0, 0, 0, 0.88);
|
|
}
|