| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .home {
- &-tabbar {
- background: var(--tabbar-background) !important;
- margin-top: auto;
- .g-icon {
- color: var(--tabbar-icon);
- &.active {
- color: var(--tabbar-icon-active);
- // 图标动画
- &:before,
- img {
- animation: icon-scale 300ms;
- }
- }
- &--market {
- &:before {
- content: var(--icon-mall);
- }
- &.active:before {
- content: var(--icon-mall-filled);
- }
- }
- &--order {
- &:before {
- content: var(--icon-cart);
- }
- &.active:before {
- content: var(--icon-cart-filled);
- }
- }
- &--mine {
- &:before {
- content: var(--icon-mine);
- }
- &.active:before {
- content: var(--icon-mine-filled);
- }
- }
- }
- }
- }
|