Skip to content
Snippets Groups Projects
Commit e7f6a64f authored by swostikpati's avatar swostikpati
Browse files

styled scrollbar

parent eb744c27
No related branches found
No related tags found
1 merge request!14Loading screen implementation
Pipeline #391516 canceled
...@@ -67,3 +67,22 @@ footer a:hover { ...@@ -67,3 +67,22 @@ footer a:hover {
.app { .app {
background-color: var(--cream); background-color: var(--cream);
} }
/* Scrollbar styles */
::-webkit-scrollbar {
width: 5px; /* Width of the scrollbar */
}
::-webkit-scrollbar-track {
background: var(--teal); /* Color of the track */
border-radius: 0px; /* Rounded corners */
}
::-webkit-scrollbar-thumb {
background: var(--dark-blue); /* Color of the thumb */
border-radius: 50px; /* Rounded corners */
}
::-webkit-scrollbar-thumb:hover {
transform: scale(1.1);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment