tab1.page.scss 449 B

123456789101112131415161718192021222324252627
  1. page-tab1 {
  2. .photo-wrapper {
  3. width: calc(50% - 8px);
  4. margin-bottom: 8px;
  5. box-sizing: border-box;
  6. float: left;
  7. clear: none;
  8. }
  9. .photo-wrapper:nth-child(2n+1) {
  10. margin-right: 8px;
  11. }
  12. .photo-container {
  13. display: block;
  14. overflow: hidden;
  15. }
  16. ion-img {
  17. width: 100%;
  18. height: auto;
  19. object-fit: cover;
  20. border-radius: 8px;
  21. display: block;
  22. cursor: pointer;
  23. }
  24. }