webamp/packages/skin-database/app/(modern)/scroll/scroll.css
Jordan Eldredge 04c396ed1f Scroll search
2025-12-29 20:22:39 -08:00

22 lines
541 B
CSS

body {
margin: 0; /* Remove default margin */
height: 100vh; /* Set body height to viewport height */
background-color: #1a1a1a; /* Dark charcoal instead of pure black */
font-family: "MS Sans Serif", "Segoe UI", sans-serif;
}
input,
button {
font-family: "MS Sans Serif", "Segoe UI", sans-serif;
}
.scroller::-webkit-scrollbar,
.hide-scrollbar::-webkit-scrollbar {
display: none; /* Chrome, Safari, Edge */
}
.scroller,
.hide-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}