index.module.less 605 B

123456789101112131415161718192021222324252627282930313233343536
  1. .listContainer {
  2. margin: 0;
  3. max-height: calc(var(--window-page-lesson-height) - 224px - 20px);
  4. .listSection {
  5. min-height: calc(var(--window-page-lesson-height) - 224px - 20px);
  6. }
  7. .emptySection {
  8. display: flex;
  9. align-items: center;
  10. }
  11. .list {
  12. margin-top: 10px;
  13. padding: 0 40px 0;
  14. margin-bottom: 12px;
  15. display: flex;
  16. flex-flow: row wrap;
  17. justify-content: flex-start;
  18. gap: 22px;
  19. }
  20. .list {
  21. // padding: 10px 0;
  22. // text-align: center;
  23. &>div {
  24. margin-bottom: 20px;
  25. &:last-child {
  26. margin-bottom: 0;
  27. }
  28. }
  29. }
  30. }