File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -179,14 +179,27 @@ a.skip-to-main:active {
179
179
}
180
180
181
181
// Scrollbar Styling
182
+ /* Webkit Browsers: Chrome, Edge */
182
183
::-webkit-scrollbar {
183
- width : 5px ;
184
+ width : 5px ; /* width of the entire scrollbar */
184
185
}
185
186
186
187
::-webkit-scrollbar-thumb {
187
- background : #FFFFFF ;
188
+ background : #FFFFFF ; /* color of the scroll thumb */
189
+ border-radius : 10px ; /* roundness of the scroll thumb */
188
190
}
189
191
190
192
::-webkit-scrollbar-thumb :hover {
191
- background : #FFFFFF ;
193
+ background : transparent ; /* color of the scroll thumb when hovered */
192
194
}
195
+
196
+ /* Firefox */
197
+ * {
198
+ scrollbar-width : thin ; /* scrollbar width: auto, thin, or none */
199
+ scrollbar-color : #FFFFFF transparent ; /* thumb color and track color */
200
+ }
201
+
202
+ /* General */
203
+ body {
204
+ overflow-y : scroll ; /* ensures vertical scroll bar is always visible */
205
+ }
You can’t perform that action at this time.
0 commit comments