Skip to content

Commit

Permalink
fix: Scrolbar colors
Browse files Browse the repository at this point in the history
  • Loading branch information
LynithDev committed Dec 15, 2024
1 parent cedc33b commit 4676ac2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import 'virtual:uno.css';
import '@unocss/reset/tailwind.css';
import 'overlayscrollbars/overlayscrollbars.css';
import '~styles/themes.scss';
import '~styles/globals.css';
import '~styles/globals.scss';
import '~styles/highlightjs.css';

import App from '~ui/pages/App';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ code {

.os-scrollbar {
--os-size: 10px;
--os-track-border-radius: theme(borderRadius.lg);
--os-handle-bg: rgba(255, 255, 255, 0.05);
--os-handle-bg-hover: rgba(255, 255, 255, 0.10);
--os-handle-bg-active: rgba(255, 255, 255, 0.07);
--os-track-border-radius: theme('borderRadius.lg');
--os-handle-bg: theme('colors.border/.15');
--os-handle-bg-hover: theme('colors.border/.25');
--os-handle-bg-active: theme('colors.border/.10');
--os-handle-perpendicular-size-hover: 140%;
--os-handle-perpendicular-size-active: 140%;
--os-handle-interactive-area-offset: 1;
Expand Down

0 comments on commit 4676ac2

Please sign in to comment.