Skip to content

Commit

Permalink
Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Amruta7203 committed May 26, 2024
1 parent 6a55e96 commit bd244f4
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions frontend/src/style/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,24 @@

/* Custom scrollbar for webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
width: 10px; /* Width of the scrollbar */
width: 6px; /* Width of the scrollbar */
}

/* Custom scrollbar for Firefox */
::-webkit-scrollbar {
scrollbar-width: thin; /* Makes the scrollbar thin */
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-bg); /* Custom colors */
border-radius: 15px;
}

::-webkit-scrollbar-track {
background-color: var(--scrollbar-bg); /* Background color of the scrollbar track */
border-radius: 15px;
}

::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-thumb); /* Color of the scrollbar thumb */
}

/* Custom scrollbar for Firefox */
* {
scrollbar-width: thin; /* Makes the scrollbar thin */
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-bg); /* Custom colors */
border-radius: 15px;
}

@media (min-width: 768px) {
Expand Down

0 comments on commit bd244f4

Please sign in to comment.