index.less 652 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import "../styles/mixins/index.less";
  2. @import "../styles/themes/index.less";
  3. .@{wux-prefix}-tabbar {
  4. position: relative;
  5. z-index: 500;
  6. width: 100%;
  7. background-color: @tabbar-bg;
  8. box-sizing: border-box;
  9. &-wrap {
  10. width: 100%;
  11. min-height: @tabbar-height;
  12. box-sizing: border-box;
  13. }
  14. &--bottom {
  15. position: fixed;
  16. left: 0;
  17. bottom: 0;
  18. &::after {
  19. .setTopLine(@border-color-split);
  20. }
  21. }
  22. &--top {
  23. position: fixed;
  24. left: 0;
  25. top: 0;
  26. &::after {
  27. .setBottomLine(@border-color-split);
  28. }
  29. }
  30. }