commit c2938e046b9113820f4afb52d442c28ec3cc6670 parent 74ddd07a66cf16d732206135c1fea3bcbf9577c1 Author: David Eisinger <[email protected]> Date: Mon, 3 Apr 2023 20:58:19 -0400 Add image-set class for displaying side-by-side images Diffstat:
| M | themes/v2/assets/css/style.scss | | | 14 | ++++++++++++++ |
1 file changed, 14 insertions(+), 0 deletions(-)
diff --git a/themes/v2/assets/css/style.scss b/themes/v2/assets/css/style.scss @@ -50,3 +50,17 @@ footer { .nowrap { white-space: nowrap; } + +.image-set { + display: flex; + gap: 2em; + + figure { + margin: 0; + + img { + width: 100%; + height: auto; + } + } +}