index.scss 479 B

123456789101112131415161718192021222324
  1. .nut-tabbar {
  2. border: 0px;
  3. border-bottom: 1px solid $tabbar-border-color;
  4. border-top: 1px solid $tabbar-border-color;
  5. width: 100%;
  6. display: flex;
  7. padding: 7px 0;
  8. box-sizing: border-box;
  9. background: $white;
  10. &:last-child {
  11. border-right: 0;
  12. }
  13. &-bottom {
  14. position: fixed;
  15. bottom: 0px;
  16. left: 0px;
  17. z-index: 888;
  18. }
  19. &-safebottom {
  20. padding-bottom: constant(safe-area-inset-bottom);
  21. padding-bottom: env(safe-area-inset-bottom);
  22. }
  23. }