From fdca5cb56d0e3ad83b3a5cc07c7ffa1bc4be0f8c Mon Sep 17 00:00:00 2001 From: beefchimi Date: Mon, 22 Jul 2024 11:16:30 -0400 Subject: [PATCH] :bug: [Page] Fix smooth scrolling in Safari --- src/styles/reset.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/reset.css b/src/styles/reset.css index c98acb9..57e2f97 100644 --- a/src/styles/reset.css +++ b/src/styles/reset.css @@ -95,7 +95,8 @@ html { text-rendering: geometricPrecision; } -html:focus-within { +html { + /* Scoping to `&:focus-within` does not work in Safari. */ scroll-behavior: smooth; }