Move scrollbar nicener mixin to separate file

This commit is contained in:
Kristóf Tóth
2018-05-17 13:58:34 +02:00
parent ebbed24c9d
commit b1245c0636
3 changed files with 20 additions and 27 deletions

View File

@ -5,9 +5,8 @@
'variables',
'grid';
@import
'mixins/scrollbar';
@import
'shared/buttons';

View File

@ -0,0 +1,17 @@
@mixin set-scrollbar-style() {
::-webkit-scrollbar-track
{
background-color: #F5F5F5;
}
::-webkit-scrollbar
{
width: 4px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
background-color: gray;
}
}