Created scroll bar variables

This commit is contained in:
Vinicius Reif Biavatti 2019-09-11 20:02:32 -03:00
parent a256bae66e
commit cc375dd9f3
2 changed files with 5 additions and 5 deletions

View File

@ -5,14 +5,14 @@
width: 10px; width: 10px;
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
background-image: url(images/scroll-cyan.png); background-image: $scroll-default-image;
background-repeat: repeat; background-repeat: repeat;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background-color: rgb(0, 168, 168);; background-color: $scroll-default-color;
} }
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background-color: rgb(0, 168, 168);; background-color: $scroll-default-color;
} }
/* Styles */ /* Styles */

View File

@ -31,8 +31,8 @@ $medium-and-down: "only screen and (max-width : #{$medium-screen})";
$medium-only: "only screen and (min-width : #{$small-screen-up}) and (max-width : #{$medium-screen})"; $medium-only: "only screen and (min-width : #{$small-screen-up}) and (max-width : #{$medium-screen})";
/* Scrool */ /* Scrool */
$scrool-image: url(images/scroll.png); $scroll-default-image: url(images/scroll-cyan.png);
$scrool-color: rgb(0, 168, 168); $scroll-default-color: rgb(0, 168, 168);
/* Grid */ /* Grid */
$num-cols: 12; $num-cols: 12;