style: remove color from scrollbar

This commit is contained in:
Herculino Trotta
2025-06-29 17:38:49 -03:00
parent 60d367dec5
commit e7fe6622cd
3 changed files with 10 additions and 10 deletions

View File

@@ -6,16 +6,16 @@
} }
::-webkit-scrollbar-track { ::-webkit-scrollbar-track {
background-color: transparent; background-color: $gray-800;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background-color: $primary; background-color: $gray-600;
border-radius: 20px; border-radius: 20px;
border: 4px solid transparent; border: 4px solid transparent;
background-clip: content-box; background-clip: content-box;
} }
::-webkit-scrollbar-thumb:hover { ::-webkit-scrollbar-thumb:hover {
background-color: #ae8000; background-color: $primary;
} }

View File

@@ -1,5 +1,5 @@
@import "tom-select/dist/css/tom-select.bootstrap5.min.css"; @import "tom-select/dist/css/tom-select.bootstrap5.min.css";
@import "variables.scss"; @import "variables";
/* FIX BOOTSTRAP STYLING FOR TOM SELECT */ /* FIX BOOTSTRAP STYLING FOR TOM SELECT */
.ts-dropdown, .ts-dropdown,

View File

@@ -1,10 +1,10 @@
@import "variables"; @import "variables";
@import "font-awesome.scss"; @import "font-awesome";
@import "bootstrap.scss"; @import "bootstrap";
@import "datepicker.scss"; @import "datepicker";
@import "tom-select.scss"; @import "tom-select";
@import "animations.scss"; @import "animations";
@import "scrollbar.scss"; @import "scrollbar";
@import "./tailwind.css"; @import "./tailwind.css";
.sticky-sidebar { .sticky-sidebar {