style.module.css 334 B

12345678910111213141516171819202122
  1. .item {
  2. height: 200px;
  3. margin-right: 8px;
  4. margin-bottom: 8px;
  5. object-fit: cover;
  6. object-position: center;
  7. border-radius: 8px;
  8. cursor: pointer;
  9. }
  10. .item:nth-child(3n) {
  11. margin-right: 0;
  12. }
  13. .img-2 .item:nth-child(2n),
  14. .img-4 .item:nth-child(2n) {
  15. margin-right: 0;
  16. }
  17. .img-4 .item:nth-child(3n) {
  18. margin-right: 8px;
  19. }