From c445756296cc9f461c7a5bb9dd5872498bb0cc4f Mon Sep 17 00:00:00 2001 From: LandaMm Date: Sun, 25 May 2025 17:51:26 +0200 Subject: [PATCH] feat: no scrollbar util --- web/src/index.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/web/src/index.css b/web/src/index.css index 9d41810..3c5849d 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -1,6 +1,16 @@ @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); @import "tailwindcss"; +@layer utilities { + .no-scrollbar::-webkit-scrollbar { + display: none; + } + .no-scrollbar { + -ms-overflow-style: none; + scrollbar-width: none; + } +} + html, body { font-family: "Inter", Arial, Helvetica, sans-serif;