feat(components): Add lightgallery library
Add external library until I develop a custom ligthbox closes #20
This commit is contained in:
parent
5a4c64ed21
commit
a6f9ce9647
8 changed files with 491 additions and 784 deletions
18
src/components/MediaGallery/Gallery.module.css
Normal file
18
src/components/MediaGallery/Gallery.module.css
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
.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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue