From 25187500f088f9e8a71440b65802215d4d9385f0 Mon Sep 17 00:00:00 2001 From: Arghya Das Date: Thu, 16 Jan 2025 19:32:39 +0530 Subject: [PATCH] feat: adding smooth scroll --- styles/globals.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/styles/globals.css b/styles/globals.css index 531256026..d0548af24 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -60,12 +60,15 @@ @apply border-border; } + html { + scroll-behavior: smooth; + } + body { @apply bg-background text-foreground; font-feature-settings: "rlig" 1, "calt" 1; - scroll-behavior: smooth; } }