From b6a6ca746a75075bfa6d2ffee0b18e5d766cc7fe Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:42:24 +0000 Subject: [PATCH] Update src/app/styles/base.css --- src/app/styles/base.css | 38 ++++++++++++-------------------------- 1 file changed, 12 insertions(+), 26 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index be35e85..42d379f 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -1,28 +1,14 @@ -* { - scrollbar-width: thin; - scrollbar-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 0); -} +@layer base { + body { + font-family: var(--font-inter), sans-serif; + } -html { - overscroll-behavior: none; - overscroll-behavior-y: none; -} - -body { - background-color: var(--background); - color: var(--foreground); - font-family: var(--font-manrope), sans-serif; - position: relative; - min-height: 100vh; - overscroll-behavior: none; - overscroll-behavior-y: none; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - font-family: var(--font-manrope), sans-serif; + h1, + h2, + h3, + h4, + h5, + h6 { + font-family: var(--font-inter), sans-serif; + } }