123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .wux-tabbar-item {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- text-align: center;
- width: 100%;
- height: 100%;
- color: #80848f;
- padding: 10rpx 0;
- box-sizing: border-box;
- float: left
- }
- .wux-tabbar-item__icon {
- display: flex;
- justify-content: center;
- font-size: 44rpx;
- height: 44rpx;
- line-height: 1
- }
- .wux-tabbar-item__title {
- font-size: 24rpx;
- margin: 4rpx 0 0;
- line-height: 1;
- text-align: center
- }
- .wux-tabbar-item--current {
- color: #33cd5f
- }
- .wux-tabbar-item--disabled {
- opacity: .3
- }
- .wux-tabbar-item--light.wux-tabbar-item--current {
- color: #ddd
- }
- .wux-tabbar-item--stable.wux-tabbar-item--current {
- color: #b2b2b2
- }
- .wux-tabbar-item--positive.wux-tabbar-item--current {
- color: #387ef5
- }
- .wux-tabbar-item--calm.wux-tabbar-item--current {
- color: #11c1f3
- }
- .wux-tabbar-item--assertive.wux-tabbar-item--current {
- color: #ef473a
- }
- .wux-tabbar-item--balanced.wux-tabbar-item--current {
- color: #33cd5f
- }
- .wux-tabbar-item--energized.wux-tabbar-item--current {
- color: #ffc900
- }
- .wux-tabbar-item--royal.wux-tabbar-item--current {
- color: #886aea
- }
- .wux-tabbar-item--dark.wux-tabbar-item--current {
- color: #444
- }
|