Skip to content

Commit

Permalink
Add search for user #11 css
Browse files Browse the repository at this point in the history
  • Loading branch information
Scobiform committed Apr 20, 2024
1 parent a8195bb commit 70b4aae
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,28 @@ ul {
padding: 0;
}

/* Styling the scrollbar track */
::-webkit-scrollbar {
width: 7px;
height: 7px; /* Needed for horizontal scrollbars */
}

::-webkit-scrollbar-track {
background: var(--secondary-color);
border: 1px solid var(--border-color);
}

/* Styling the scrollbar handle */
::-webkit-scrollbar-thumb {
background-color: var(--british-racing-green);
border: 2px solid var(--primary-color);
border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb:hover {
background-color: var(--primary-color);
}

.container {
max-width: 1200px;
margin: auto;
Expand Down

0 comments on commit 70b4aae

Please sign in to comment.