Skip to content

Commit

Permalink
Use regular CSS properties in scrollbars
Browse files Browse the repository at this point in the history
Use box-shadow instead of webkit specific property.
Mainly for code unification purposes.
  • Loading branch information
SuslikV committed Jul 9, 2019
1 parent 646d703 commit d7e8f05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timeline/media/css/main.css
Expand Up @@ -149,7 +149,7 @@ img {

::-webkit-scrollbar-track {
background: #000000;
-webkit-box-shadow: inset 0 0 0.6em rgba(75,196,233,1.0);
box-shadow: inset 0 0 0.6em rgba(75,196,233,1.0);
border-radius: 0.45em;
}

Expand Down

0 comments on commit d7e8f05

Please sign in to comment.