index.less 439 B

12345678910111213141516171819202122
  1. @import './var.less';
  2. :root {
  3. --van-tabbar-height: @tabbar-height;
  4. --van-tabbar-z-index: @tabbar-z-index;
  5. --van-tabbar-background-color: @tabbar-background-color;
  6. }
  7. .van-tabbar {
  8. z-index: var(--van-tabbar-z-index);
  9. display: flex;
  10. box-sizing: content-box;
  11. width: 100%;
  12. height: var(--van-tabbar-height);
  13. background: var(--van-tabbar-background-color);
  14. &--fixed {
  15. position: fixed;
  16. bottom: 0;
  17. left: 0;
  18. }
  19. }