fixed the scroll behavior in the header

This commit is contained in:
2026-04-15 12:21:31 +02:00
parent e77fb4a1f2
commit bc83366c9e
5 changed files with 111 additions and 17 deletions
+19
View File
@@ -16,4 +16,23 @@
body {
background-color: var(--background);
color: var(--foreground);
}
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
::-webkit-scrollbar {
display: none;
width: 0px;
background: transparent;
}
* {
scrollbar-width: none;
-ms-overflow-style: none;
}