mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-22 08:38:13 +02:00
style(docs): add custom green scrollbar (#434)
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
parent
f913ab669c
commit
988d50e82d
1 changed files with 24 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue