From 48fc3f4c6bdade88db0a6fba3969903c9ae08a8c Mon Sep 17 00:00:00 2001 From: Teddy Bradford <3684553+teddybradford@users.noreply.github.com> Date: Thu, 17 Feb 2022 13:29:06 -0500 Subject: [PATCH] Add top margin to figcaption Currently there is no margin between `img` and `figcaption` inside `figure`. This change adds a small margin so that the text has some breathing room. --- Shared/Article Rendering/stylesheet.css | 1 + 1 file changed, 1 insertion(+) diff --git a/Shared/Article Rendering/stylesheet.css b/Shared/Article Rendering/stylesheet.css index 153655e3d..2d50fdf34 100644 --- a/Shared/Article Rendering/stylesheet.css +++ b/Shared/Article Rendering/stylesheet.css @@ -263,6 +263,7 @@ figure { } figcaption { + margin-top: 0.5em; font-size: 14px; line-height: 1.3em; }