How To Style Scroll Bar In Tailwind Css Code Example


Example: custom scrollbar tailwind


/* width */
::-webkit-scrollbar {
width: 16px;
height: 16px;
}

/* Track */
::-webkit-scrollbar-track {
border-radius: 100vh;
background: #edf2f7;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #cbd5e0;
border-radius: 100vh;
border: 3px solid #edf2f7;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #a0aec0;
}

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy