index.less 408B

1234567891011121314151617181920212223242526272829303132
  1. .page-index {
  2. display: flex;
  3. flex-direction: column;
  4. width: 100vw;
  5. height: 100vh;
  6. overflow: hidden;
  7. box-sizing: border-box;
  8. .index-navbar {
  9. flex: none;
  10. }
  11. .index-tabber {
  12. flex: none;
  13. }
  14. .index-container {
  15. flex: auto;
  16. }
  17. }
  18. .custom-tabbar {
  19. .weui-tabbar__label {
  20. color: #C0C8D3;
  21. }
  22. .weui-bar__item_on {
  23. .weui-tabbar__label {
  24. color: #202020;
  25. }
  26. }
  27. }