index.css
415 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 25px;
transition: all 0.3s;
background-color: rgba(106, 115, 125, 0.2);
&:hover {
background-color: rgba(106, 115, 125, 0.27);
}
}
::-webkit-scrollbar-corner {
display: none;
}