-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
967bf3e
commit 9a36cad
Showing
1 changed file
with
7 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,27 @@ | ||
.scrollableContainer { | ||
/* WebKit Browsers */ | ||
::-webkit-scrollbar { | ||
width: 12px; | ||
background-color: #f5f5f5; /* Added background color */ | ||
background-color: #f5f5f5; | ||
} | ||
|
||
::-webkit-scrollbar-track { | ||
background: #f1f1f1; | ||
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* Added box shadow */ | ||
border-radius: 10px; /* Added border radius */ | ||
background-color: #f5f5f5; /* Added background color */ | ||
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); | ||
border-radius: 10px; | ||
background-color: #f5f5f5; | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
background: #888; | ||
border-radius: 10px; /* Added border radius */ | ||
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); /* Added box shadow */ | ||
background-color: #f5f5f5; /* Added background color */ | ||
border-radius: 10px; | ||
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); | ||
background-color: #f5f5f5; | ||
} | ||
|
||
::-webkit-scrollbar-thumb:hover { | ||
background: #555; | ||
} | ||
|
||
/* Firefox */ | ||
scrollbar-width: thin; | ||
scrollbar-color: #888 #f1f1f1; | ||
} |