22 lines
442 B
SCSS
22 lines
442 B
SCSS
@import "tailwindcss";
|
|
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
|
|
:root {
|
|
font-family: "Montserrat", sans-serif;
|
|
}
|
|
|
|
@layer base {
|
|
::-webkit-scrollbar {
|
|
@apply w-2;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
@apply bg-gray-100;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
@apply rounded-full bg-gray-300;
|
|
}
|
|
::-webkit-scrollbar-thumb:hover {
|
|
@apply bg-gray-500;
|
|
}
|
|
}
|