index.acss 529 B

1234567891011121314151617181920212223242526
  1. .tabbar-index {
  2. display: block;
  3. height: initial;
  4. }
  5. @import "../common/index.acss";
  6. .tabbar-index .van-tabbar {
  7. display: -webkit-flex;
  8. display: flex;
  9. box-sizing: initial;
  10. width: 100%;
  11. height: 50px;
  12. height: var(--tabbar-height, 50px);
  13. background-color: #fff;
  14. background-color: var(--tabbar-background-color, #fff);
  15. }
  16. .tabbar-index .van-tabbar--fixed {
  17. position: fixed;
  18. bottom: 0;
  19. left: 0;
  20. }
  21. .tabbar-index .van-tabbar--safe {
  22. padding-bottom: env(safe-area-inset-bottom);
  23. }