1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .wux-navbar {
- display: flex;
- align-items: center;
- height: 90rpx;
- background-color: #fff;
- color: #444
- }
- .wux-navbar__left,
- .wux-navbar__right,
- .wux-navbar__title {
- display: flex;
- align-items: center;
- flex: 1;
- height: 100%
- }
- .wux-navbar__left {
- padding-left: 20rpx;
- font-size: 28rpx
- }
- .wux-navbar__title {
- justify-content: center;
- font-size: 32rpx;
- white-space: nowrap
- }
- .wux-navbar__right {
- justify-content: flex-end;
- font-size: 28rpx;
- margin-right: 20rpx
- }
- .wux-navbar--light {
- background-color: #fff;
- color: #444
- }
- .wux-navbar--stable {
- background-color: #f8f8f8;
- color: #444
- }
- .wux-navbar--positive {
- background-color: #387ef5;
- color: #fff
- }
- .wux-navbar--calm {
- background-color: #11c1f3;
- color: #fff
- }
- .wux-navbar--assertive {
- background-color: #ef473a;
- color: #fff
- }
- .wux-navbar--balanced {
- background-color: #33cd5f;
- color: #fff
- }
- .wux-navbar--energized {
- background-color: #ffc900;
- color: #fff
- }
- .wux-navbar--royal {
- background-color: #886aea;
- color: #fff
- }
- .wux-navbar--dark {
- background-color: #444;
- color: #fff
- }
|