2024-02-21 14:19:36 -08:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
@layer base {
|
|
|
|
a {
|
|
|
|
@apply text-blue-600 hover:text-blue-800 visited:text-purple-600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
a {
|
|
|
|
@apply text-blue-300 hover:text-blue-500 visited:text-purple-300;
|
|
|
|
}
|
|
|
|
}
|
2024-02-21 15:13:18 -08:00
|
|
|
|
|
|
|
body {
|
2024-02-21 20:10:42 -08:00
|
|
|
@apply bg-black text-white;
|
2024-02-25 01:05:44 -08:00
|
|
|
/* hide scrollbar */
|
|
|
|
-ms-overflow-style: none;
|
|
|
|
scrollbar-width: none;
|
|
|
|
}
|
|
|
|
body::-webkit-scrollbar {
|
|
|
|
display: none;
|
2024-02-21 15:13:18 -08:00
|
|
|
}
|
2024-02-21 14:19:36 -08:00
|
|
|
}
|
2024-02-23 17:22:50 -08:00
|
|
|
|
|
|
|
.placeholder {
|
|
|
|
@apply text-neutral-300 bg-neutral-300 animate-pulse rounded-lg;
|
|
|
|
}
|