Merge branch 'feature/dark'

This commit is contained in:
James Barnsley
2017-08-01 15:32:56 +12:00
5 changed files with 52 additions and 8 deletions

View File

@ -15,6 +15,25 @@ body {
overflow-y: scroll;
overflow-x: hidden;
&::-webkit-scrollbar{
width: 8px;
height: 8px;
}
&::-webkit-scrollbar-track {
background: $dark_grey;
}
&::-webkit-scrollbar-thumb {
@include animate();
background: $grey;
border-radius: 3px;
&:hover {
background: $mid_grey;
}
}
&.touch-dragging,
&.modal-open {
overflow-y: hidden;