| 1234567891011121314151617181920212223242526272829 |
- /* pages/index/tab.wxss */
- .component {
- background-color: white;
- white-space: nowrap;
- box-sizing: border-box;
- }
- .content {
- position: relative;
- }
- .item {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- padding: 0 30rpx;
- }
- .text {
- transition: color 0.2s
- }
- .bottom-bar {
- position: absolute;
- height: 2px;
- border-radius: 2px
- }
- .small {
- height: 4px;
- border-radius: 2px;
- }
|