index.less 707 B

123456789101112131415161718192021222324252627282930313233
  1. .home {
  2. .app-tabbar {
  3. background: var(--tabbar-background) !important;
  4. margin-top: auto;
  5. &__item {
  6. font-size: .24rem;
  7. color : var(--tabbar-icon);
  8. &.is-active {
  9. color: var(--tabbar-icon-active);
  10. .app-iconfont__icon {
  11. animation: icon-scale 300ms;
  12. }
  13. }
  14. &--home.is-active {
  15. color: #c30d23;
  16. }
  17. .app-iconfont {
  18. &__icon {
  19. font-size: .48rem;
  20. }
  21. &__label {
  22. margin-top: .08rem;
  23. }
  24. }
  25. }
  26. }
  27. }