Fix sidebar

This commit is contained in:
Greg Shuflin
2025-02-16 00:22:15 -08:00
parent f2a2994fe3
commit d3ebd66c9a
3 changed files with 26 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
/* Custom scrollbar styling */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: var(--dark-bg);
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: var(--text-muted);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--text-color);
}
/* Firefox scrollbar styling */
* {
scrollbar-width: thin;
scrollbar-color: var(--text-muted) var(--dark-bg);
}

View File

@@ -6,6 +6,7 @@
@import 'components/modal.css';
@import 'components/feed-entries.css';
@import 'components/dropdown.css';
@import 'components/scrollbar.css';
body {
margin: 0;