From a5bcb38ed6505c8b61cc4e1fab07d8888ef63a21 Mon Sep 17 00:00:00 2001 From: catherine-w <37776108+catherine-w@users.noreply.github.com> Date: Fri, 8 Oct 2021 20:00:49 -0400 Subject: [PATCH] gix h2,h3,h4 sizing in markdown files --- components/MiniEventCard.module.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/components/MiniEventCard.module.css b/components/MiniEventCard.module.css index e398a611..d2c4ba35 100644 --- a/components/MiniEventCard.module.css +++ b/components/MiniEventCard.module.css @@ -57,6 +57,14 @@ fill: var(--primary-accent); } +.card h2, +.card h3, +.card h4 { + font-size: calc(16rem / 16); + margin-top: calc(24rem / 16); + margin-bottom: calc(8rem / 16); +} + @media only screen and (max-width: calc(768rem / 16)) { .details { bottom: 0; @@ -76,4 +84,12 @@ .nameSpacer { display: none; } + + .card h2, + .card h3, + .card h4 { + font-size: calc(18rem / 16); + margin-top: calc(24rem / 16); + margin-bottom: calc(8rem / 16); + } }