feature/move-styles-to-components #874

Merged
konrad merged 45 commits from dpschen/frontend:feature/move-styles-to-components into main 2021-10-21 19:11:18 +00:00
5 changed files with 7 additions and 8 deletions
Showing only changes of commit b164f43168 - Show all commits

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;