personal-page/src/components/MediaGallery/Gallery.module.css
aleidk a6f9ce9647 feat(components): Add lightgallery library
Add external library until I develop a custom ligthbox
closes #20
2023-12-17 20:21:38 -03:00

18 lines
261 B
CSS

.thumbnailList {
display: grid;
overflow-x: scroll;
gap: var(--prj-spacing-3);
padding-bottom: var(--prj-spacing-2);
grid-auto-columns: 25%;
grid-auto-flow: column;
}
.thumbnailItem {
width: 100%;
}
.thumbnailItem:hover {
cursor: pointer;
}