feat: move scrollbar styles and add variables locally
This commit is contained in:
parent
b304712b1e
commit
6195637001
5 changed files with 7 additions and 8 deletions
|
@ -1,5 +1,3 @@
|
|||
@import "base";
|
||||
|
||||
@import "attachments";
|
||||
@import "gantt";
|
||||
@import "tooltip";
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
@import 'scrollbars';
|
|
@ -1,3 +1,5 @@
|
|||
@import "scrollbars";
|
||||
|
||||
@import "theme";
|
||||
|
||||
@import "content";
|
||||
|
|
|
@ -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;
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue