index.less 643 B

12345678910111213141516171819202122232425262728293031
  1. .body {
  2. display: flex;
  3. flex-direction: column;
  4. height: 100vh;
  5. background-color: #f9f9f9;
  6. .info {
  7. flex-grow: 1;
  8. position: relative;
  9. .scroll-view {
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. bottom: 0;
  15. .list-scroll-view {
  16. display: flex;
  17. flex-wrap: wrap;
  18. align-content: flex-start;
  19. justify-content: space-between;
  20. margin: 0 2vw;
  21. padding: 2vw 0;
  22. }
  23. }
  24. }
  25. .foot {
  26. background-color: green;
  27. }
  28. }