feat(style): custom scrollbar styling

This commit is contained in:
Vasiliy 2025-01-17 21:49:44 +03:00 committed by GitHub
parent ad479c4be1
commit e257f86194
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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 {