+
Neu Verkosten
diff --git a/src/app/globals.css b/src/app/globals.css
index fd81e88..50baef2 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -18,10 +18,18 @@
body {
color: rgb(var(--foreground-rgb));
- background: linear-gradient(
- to bottom,
+ background: linear-gradient(to bottom,
transparent,
- rgb(var(--background-end-rgb))
- )
- rgb(var(--background-start-rgb));
+ rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));
}
+
+@layer utilities {
+ .scrollbar-hide::-webkit-scrollbar {
+ display: none;
+ }
+
+ .scrollbar-hide {
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+ }
+}
\ No newline at end of file