index.less 687 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .cat-view {
  2. display: flex;
  3. flex-direction: column;
  4. height: 100%;
  5. &__container {
  6. flex: 1;
  7. display: flex;
  8. flex-direction: column;
  9. overflow-y: auto;
  10. -webkit-overflow-scrolling: touch;
  11. &-navbar {
  12. width: 100%;
  13. &.fixed {
  14. position: fixed;
  15. z-index: 1000;
  16. top: 0;
  17. left: 0;
  18. }
  19. }
  20. &-main {
  21. flex: 1;
  22. overflow-y: auto;
  23. -webkit-overflow-scrolling: touch;
  24. }
  25. }
  26. &__footer {
  27. background-color: #fff;
  28. &:empty {
  29. display: none;
  30. }
  31. }
  32. }