birdsounds.media/assets/scss/layouts/partials/photos-grid.scss
a 9aa43df629 First commit
The basic parts of the layouts/theme should work. I have only populated 2 albums so far.
2024-05-17 21:14:05 -05:00

21 lines
432 B
SCSS

.photos-grid {
list-style: none;
a {
color: inherit;
text-decoration: none;
display: contents;
}
max-width: var(--list-max-width, 60rem);
display: grid;
grid-template-columns: repeat(auto-fill, minmax(var(--photo-grid-item-size, 20rem), 1fr));
gap: var(--photo-grid-gap, 1em);
}
.photos-grid .photo-asset {
display: block;
width: 100%;
height: 100%;
aspect-ratio: 1;
object-fit: cover;
object-position: center;
}