Redo the figure shortcode to take multiple images

Put all images in a flexbox container
This commit is contained in:
Eryn Wells 2023-08-02 17:16:30 -07:00
parent cce2a1670e
commit afc6e81b70
2 changed files with 41 additions and 11 deletions

View file

@ -10,7 +10,13 @@
margin-inline: 0;
overflow: hidden;
max-width: var(--content-width);
width: 100%;
}
figure > .container {
align-items: center;
display: flex;
justify-content: center;
gap: var(--body-item-spacing);
}
figure.bordered {
@ -28,7 +34,6 @@
border-radius: 6px;
height: auto;
max-width: var(--content-width);
width: 100%;
}
figure svg {