index.css 424 B

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