Skip to content

Commit

Permalink
modify: scrollbar effects
Browse files Browse the repository at this point in the history
  • Loading branch information
zinirun committed Mar 10, 2021
1 parent 84cba71 commit f8e63d5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions frontend/src/common/styles/layout.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
*::-webkit-scrollbar {
width: 8px;
height: 9px;
}
*::-webkit-scrollbar-track {
background-color: transparent;
}
*::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: #ccc;
}
*::-webkit-scrollbar-thumb:hover {
background-color: #bbb;
}
*::-webkit-scrollbar-button {
width: 0;
height: 0;
}

.site-layout-background {
background: #fff;
padding: 0;
Expand Down

0 comments on commit f8e63d5

Please sign in to comment.