style(docs): add custom green scrollbar (#434)

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
GURKIRAT SINGH 2026-06-20 15:10:08 +05:30 committed by GitHub
parent f913ab669c
commit 988d50e82d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -57,3 +57,27 @@ button[data-testid*="search"],
animation: search-pulse 2s ease-in-out infinite !important;
}
/* Custom scrollbar */
/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #16A34A transparent;
}
/* WebKit: Chrome, Edge, Safari, mobile */
*::-webkit-scrollbar {
width: 8px;
height: 8px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
background: #16A34A;
border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover {
background: #15803D;
}