sidebar styling
This commit is contained in:
parent
033ddb756a
commit
6f59dfd0f4
1 changed files with 33 additions and 8 deletions
|
|
@ -57,7 +57,32 @@ body {
|
|||
|
||||
display: flex;
|
||||
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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue