Skip to content

Commit

Permalink
Merge pull request #1467 from scottmcdonnell/feature/dark_scrollbar
Browse files Browse the repository at this point in the history
Feature/dark scrollbar
  • Loading branch information
frankrousseau authored Jun 26, 2024
2 parents 6a1b20f + 0bf795b commit f85f87d
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2267,4 +2267,43 @@ th.validation-cell {
flex-direction: column;
}
}
/* scrollbar */
::-webkit-scrollbar {
width: 20px;
height: 20px;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #eee;
border-radius: 20px;
border: 6px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background-color: #ddd;
}
::-webkit-scrollbar-thumb:active {
background-color: #ccc;
}
.dark {
::-webkit-scrollbar-thumb {
background-color: #46494f;
}
::-webkit-scrollbar-thumb:hover {
background-color: #4d5560;
}
::-webkit-scrollbar-thumb:active {
background-color: #5e6169;
}
}
</style>

0 comments on commit f85f87d

Please sign in to comment.