index.less 710 B

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