feat: move scrollbar styles and add variables locally

This commit is contained in:
Dominik Pschenitschni 2021-10-18 14:19:36 +02:00
parent c2e3a383b8
commit b164f43168
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
5 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,3 @@
@import "base";
@import "attachments";
@import "gantt";
@import "tooltip";

View File

@ -1 +0,0 @@
@import 'scrollbars';

View File

@ -1,3 +1,5 @@
@import "scrollbars";
@import "theme";
@import "content";

View File

@ -1,3 +1,8 @@
$scrollbar-height: 8px;
$scrollbar-track-color: $grey-200;
$scrollbar-thumb-color: $grey-300;
$scrollbar-hover-color: $grey-500;
// Chrome
::-webkit-scrollbar {
width: $scrollbar-height;

View File

@ -29,11 +29,6 @@ $vikunja-nav-logo-full-width: 164px;
$transition-duration: 150ms;
$transition: $transition-duration ease;
$scrollbar-height: 8px;
$scrollbar-track-color: $grey-200;
$scrollbar-thumb-color: $grey-300;
$scrollbar-hover-color: $grey-500;
$button-height: 34px;
$switch-view-height: 2.69rem;