index.less 407 B

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