veilid-dot-com/themes/veilid/assets/scss/bootstrap/_gallery.scss

24 lines
295 B
SCSS
Raw Normal View History

2023-08-15 19:25:21 +00:00
/*
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;
}
}
}