From 8f5d2f0460556ad3bc115ca3d8419b0b29099e36 Mon Sep 17 00:00:00 2001 From: Thomas Smith <49042513+tsmitty11@users.noreply.github.com> Date: Mon, 15 Aug 2022 11:11:13 -0400 Subject: [PATCH 1/2] font-size change (mobile-only) --- src/layouts/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/layouts/index.html b/src/layouts/index.html index d603a4d..aa39d1c 100644 --- a/src/layouts/index.html +++ b/src/layouts/index.html @@ -75,6 +75,12 @@ display:none; } } + + @media only screen and (max-width: 768px) { + #count{ + font-size: 4rem !important; + } + } From 0435d25a819567b4a4e603899426b95c2ec9b50d Mon Sep 17 00:00:00 2001 From: Thomas Smith <49042513+tsmitty11@users.noreply.github.com> Date: Mon, 15 Aug 2022 16:58:34 -0400 Subject: [PATCH 2/2] line-height adjustment --- src/layouts/index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/layouts/index.html b/src/layouts/index.html index aa39d1c..bff53a2 100644 --- a/src/layouts/index.html +++ b/src/layouts/index.html @@ -80,6 +80,11 @@ #count{ font-size: 4rem !important; } + + .card-title{ + line-height: 2.8rem; + margin-bottom: 1.7rem; + } }