Skip to content

Commit

Permalink
chore: making scrollbar track invisible (#254)
Browse files Browse the repository at this point in the history
Co-authored-by: josef <josef.aidt@gmail.com>
  • Loading branch information
Emma Sauerborn and josefaidt authored Aug 31, 2022
1 parent 236df9b commit 324b74e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/routes/dashboard/components/ChannelHealth.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,22 @@
max-height: 90vh;
overflow-y: scroll;
}
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-track {
visibility: hidden;
}
::-webkit-scrollbar-thumb {
background: #ddd;
visibility: hidden;
}
:hover::-webkit-scrollbar-thumb {
visibility: visible;
border-radius: 6px;
}
</style>

0 comments on commit 324b74e

Please sign in to comment.