#nextjs
Custom Scrollbar
Chrome, Edge, Safari and Opera support the non-standard ::-webkit-scrollbar pseudo element, which allows us to modify the look of the browser's scrollbar.
Adding Code to global.css
Customize Colors to Suit Your Preferences
1/* width */2::-webkit-scrollbar {3width: 10px;4}56/* Track */7::-webkit-scrollbar-track {8background: #171a1b;9border-right: 1px solid #73737334;10border-left: 1px solid #73737334;11box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);12}1314/* Handle */15::-webkit-scrollbar-thumb {16background: #347aa7;17}1819/* Handle on hover */20::-webkit-scrollbar-thumb:hover {21background: #21a2dc;22}
©2024 Codeblockz
Privacy Policy