Add custom Scrollbar for Chrome

pull/3697/head
Zalati (Cédric Lecullié) 6 months ago committed by GitHub
parent be047427df
commit 030b367770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -27,6 +27,25 @@
input[type='search']::-webkit-search-cancel-button {
-webkit-appearance: none;
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-track {
background-color: transparent;
border-radius: 6px;
}
::-webkit-scrollbar-thumb {
background: rgba(0,0,0,.4);
border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0,0,0,.2);
}
}
@layer components {

Loading…
Cancel
Save