Add image-set class for displaying side-by-side images

This commit is contained in:
David Eisinger
2023-04-03 20:58:19 -04:00
parent 74ddd07a66
commit c2938e046b

View File

@@ -50,3 +50,17 @@ footer {
.nowrap { .nowrap {
white-space: nowrap; white-space: nowrap;
} }
.image-set {
display: flex;
gap: 2em;
figure {
margin: 0;
img {
width: 100%;
height: auto;
}
}
}