From cd503b1275a5295fc7897852cba3357d5e319a3e Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Tue, 8 Oct 2024 19:21:15 -0700 Subject: [PATCH] Conslidate the root font-size in the html element The size of body text was not being set correctly because of this. --- assets/css/010_typography.css | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/assets/css/010_typography.css b/assets/css/010_typography.css index 4f04911..daf4759 100644 --- a/assets/css/010_typography.css +++ b/assets/css/010_typography.css @@ -53,12 +53,8 @@ html { font-family: var(--font-family-body); - font-size: 100%; - line-height: 1.45; -} - -body { font-size: clamp(100%, 3vw, 130%); + line-height: 1.45; }