Merge pull request #1128 from TheLetslook/patch-1

feat(style): custom scrollbar styling
This commit is contained in:
Mauricio Siu
2025-01-18 11:00:42 -06:00
committed by GitHub

View File

@@ -101,9 +101,29 @@
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
/* Custom scrollbar styling */
::-webkit-scrollbar {
width: 0.3125rem;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: hsl(var(--border));
border-radius: 0.3125rem;
}
* {
scrollbar-width: thin;
scrollbar-color: hsl(var(--border)) transparent;
}
}
.xterm-viewport {