sidebar styling

This commit is contained in:
Broque Thomas 2025-11-09 09:11:29 -08:00
parent 033ddb756a
commit 6f59dfd0f4

View file

@ -57,7 +57,32 @@ body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; overflow-y: auto;
overflow-x: hidden;
/* Custom scrollbar styling */
scrollbar-width: thin;
scrollbar-color: rgba(29, 185, 84, 0.5) rgba(255, 255, 255, 0.05);
}
/* Sidebar scrollbar webkit styling */
.sidebar::-webkit-scrollbar {
width: 6px;
}
.sidebar::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
}
.sidebar::-webkit-scrollbar-thumb {
background: rgba(29, 185, 84, 0.5);
border-radius: 10px;
transition: background 0.3s ease;
}
.sidebar::-webkit-scrollbar-thumb:hover {
background: rgba(29, 185, 84, 0.7);
} }
/* Sidebar Header */ /* Sidebar Header */