veilid-dot-com/themes/veilid/assets/scss/bootstrap/_gallery.scss
2023-08-15 15:25:21 -04:00

24 lines
295 B
SCSS

/*
div.gallery
figure
img
figcaption
*/
div.gallery {
@extend .row;
@extend .row-cols-2;
.gallery-item {
padding: 1px;
}
figure {
margin: 1rem;
@extend .card;
img {
@extend .card-img-top;
}
figcaption {
@extend .card-body;
}
}
}