From 6dce1418622b83a8d97d90eb41964d408ad0ae41 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Fri, 2 Jan 2026 22:06:35 +0000 Subject: [PATCH] fix: Use em unit for story font size --- webclient/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webclient/src/App.js b/webclient/src/App.js index cbce1bd..be19b46 100644 --- a/webclient/src/App.js +++ b/webclient/src/App.js @@ -134,7 +134,7 @@ function App() { style.id = styleId; document.head.appendChild(style); } - style.innerHTML = `.story-text { font-size: ${storyFontSize}rem !important; }`; + style.innerHTML = `.story-text { font-size: ${storyFontSize}em !important; }`; }, [storyFontSize]); const fullScreenAvailable = document.fullscreenEnabled ||