From a8ce8bfa9395c105cdfe64eeeb0b31c280abd734 Mon Sep 17 00:00:00 2001 From: ChaeYubin Date: Wed, 6 Nov 2024 20:47:02 +0900 Subject: [PATCH] =?UTF-8?q?Design:=20=EC=A0=84=EC=97=AD=EC=97=90=EC=84=9C?= =?UTF-8?q?=20=EC=8A=A4=ED=81=AC=EB=A1=A4=EB=B0=94=20=EB=B3=B4=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EB=8F=84=EB=A1=9D=20css=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/globals.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/styles/globals.css b/src/styles/globals.css index c02d1c5..315cb0e 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -24,13 +24,17 @@ --chart-5: 27 87% 67%; } + body { + @apply bg-background text-foreground; + } + * { overscroll-behavior: none; + -ms-overflow-style: none; /* IE, Edge */ + scrollbar-width: none; /* Firefox */ } -} -@layer base { - body { - @apply bg-background text-foreground; + *::-webkit-scrollbar { + display: none; /* Chrome, Safari */ } }