From 9f78a4ef49dc760a8ae1e90f6745cce49c98d239 Mon Sep 17 00:00:00 2001 From: Martin Rosenberg Date: Mon, 4 Nov 2024 16:05:27 -0600 Subject: [PATCH] Use percentage for html font-size Sets font-size for html to 93.75% instead of 15px, as using px for root font-size creates an accessibility issue by preventing users' default font sizes from being applied. --- tufte.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tufte.css b/tufte.css index c9b2528..c6d8135 100644 --- a/tufte.css +++ b/tufte.css @@ -41,7 +41,7 @@ /* Tufte CSS styles */ html { - font-size: 15px; + font-size: 93.75%; } body {