From e7ed2cb76d3a30cc04547328247f5fcb66c561b2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:44:04 +0000 Subject: [PATCH] Switch to version 1: modified src/app/styles/base.css --- src/app/styles/base.css | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index e82513c..7b2f718 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -1,5 +1,28 @@ -@layer base { - body { - @apply text-foreground; - } +* { + scrollbar-width: thin; + scrollbar-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 0); +} + +html { + overscroll-behavior: none; + overscroll-behavior-y: none; +} + +body { + background-color: var(--background); + color: var(--foreground); + font-family: var(--font-mulish), sans-serif; + position: relative; + min-height: 100vh; + overscroll-behavior: none; + overscroll-behavior-y: none; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: var(--font-mulish), sans-serif; }