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;
}
::-webkit-scrollbar-track {
background-image: url(images/scroll-cyan.png);
background-image: $scroll-default-image;
background-repeat: repeat;
}
::-webkit-scrollbar-thumb {
background-color: rgb(0, 168, 168);;
background-color: $scroll-default-color;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgb(0, 168, 168);;
background-color: $scroll-default-color;
}
/* 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})";
/* Scrool */
$scrool-image: url(images/scroll.png);
$scrool-color: rgb(0, 168, 168);
$scroll-default-image: url(images/scroll-cyan.png);
$scroll-default-color: rgb(0, 168, 168);
/* Grid */
$num-cols: 12;