From 6ae0eef9e929358adf92732e970c180485cbb343 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 1b50b7bea..a1059a182 100644 --- a/Shared/Article Rendering/stylesheet.css +++ b/Shared/Article Rendering/stylesheet.css @@ -234,6 +234,7 @@ figure { } figcaption { + margin-top: 0.5em; font-size: 14px; line-height: 1.3em; }