index.less 679 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @import '../style/var';
  2. .van-tabbar-item {
  3. display: flex;
  4. flex: 1;
  5. flex-direction: column;
  6. align-items: center;
  7. justify-content: center;
  8. color: @tabbar-item-text-color;
  9. font-size: @tabbar-item-font-size;
  10. line-height: @tabbar-item-line-height;
  11. cursor: pointer;
  12. &__icon {
  13. position: relative;
  14. margin-bottom: @tabbar-item-margin-bottom;
  15. font-size: @tabbar-item-icon-size;
  16. .van-icon {
  17. display: block;
  18. }
  19. img {
  20. display: block;
  21. height: 20px;
  22. }
  23. }
  24. &--active {
  25. color: @tabbar-item-active-color;
  26. background-color: @tabbar-item-active-background-color;
  27. }
  28. .van-info {
  29. margin-top: @padding-base;
  30. }
  31. }