23 lines
405 B
CSS
23 lines
405 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
&::-webkit-scrollbar {
|
|
width: 0px;
|
|
}
|
|
&::-webkit-scrollbar-track {
|
|
background: #171220;
|
|
border-radius: 2px;
|
|
}
|
|
&::-webkit-scrollbar-corner {
|
|
display: block;
|
|
}
|
|
&::-webkit-scrollbar-thumb {
|
|
height: 15px;
|
|
background: #9950fd;
|
|
border-radius: 10px;
|
|
}
|
|
} |