From e3857e61c6a35b58f0193957575d076531b5921a Mon Sep 17 00:00:00 2001 From: Dan Ditomaso Date: Sat, 3 May 2025 13:24:00 -0400 Subject: [PATCH] fix: defined height to html/body elements --- src/index.css | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/src/index.css b/src/index.css index 6802cff8..cced78ac 100644 --- a/src/index.css +++ b/src/index.css @@ -71,6 +71,23 @@ } } +html { + overflow: hidden; +} + +html, +body { + height: 100%; +} + +body { + font-family: var(--font-sans); +} + +.app-container { + height: 100%; +} + @layer base { *, @@ -80,10 +97,6 @@ ::file-selector-button { border-color: var(--color-slate-200, currentColor); } - - body { - font-family: var(--font-sans); - } } @layer components {