From a5576f648d96f8b77fdad3d24c6ae62bae50004d Mon Sep 17 00:00:00 2001 From: Luke Vella <me@lukevella.com> Date: Mon, 9 Jan 2023 11:34:49 +0000 Subject: [PATCH] Fix scrolling behavior in safari (#383) Close #377 --- style.css | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/style.css b/style.css index 7152f79bb..f94150c69 100644 --- a/style.css +++ b/style.css @@ -3,14 +3,12 @@ @tailwind utilities; @layer base { - html, + html { + @apply h-full overflow-auto bg-slate-50 text-base text-slate-600; + } body, #__next { - height: 100%; - @apply overflow-x-hidden bg-slate-50; - } - body { - @apply bg-slate-50 text-base text-slate-600; + @apply h-full; } p { @apply mb-4;