From 98fc4867e12481f5277608bd60fa0bfbecc4f0a4 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 25 Jul 2024 13:13:20 -0700 Subject: [PATCH] Typography: Remove --text-base-size variable unconditionally sets its font-size to 100%. --- assets/css/010_typography.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/assets/css/010_typography.css b/assets/css/010_typography.css index 63626d4..73aff35 100644 --- a/assets/css/010_typography.css +++ b/assets/css/010_typography.css @@ -19,7 +19,6 @@ --font-family-body: var(--font-family-sans); --font-family-heading: var(--font-family-monospace); - --text-base-size: 125%; --text-base: {{ $base }}{{ $unit }}; {{ range $scale -}} --text-{{ .Name }}: calc(var(--text-base) * pow({{ $factor }}, {{ .Value }})); @@ -38,7 +37,7 @@ html { font-family: var(--font-family-body); - font-size: var(--text-base-size); + font-size: 100%; line-height: 1.45; }