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 1/2] 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); + } } -- 2.39.2 From 742c71300b2ebf2ecc194a1c19bbd8007e01980a Mon Sep 17 00:00:00 2001 From: catherine-w <37776108+catherine-w@users.noreply.github.com> Date: Sat, 23 Oct 2021 16:07:13 -0400 Subject: [PATCH 2/2] update font sizing --- components/MiniEventCard.module.css | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/components/MiniEventCard.module.css b/components/MiniEventCard.module.css index d2c4ba35..482620e1 100644 --- a/components/MiniEventCard.module.css +++ b/components/MiniEventCard.module.css @@ -57,6 +57,7 @@ fill: var(--primary-accent); } +.card h1, .card h2, .card h3, .card h4 { @@ -84,12 +85,4 @@ .nameSpacer { display: none; } - - .card h2, - .card h3, - .card h4 { - font-size: calc(18rem / 16); - margin-top: calc(24rem / 16); - margin-bottom: calc(8rem / 16); - } } -- 2.39.2