40 lines
664 B
CSS
40 lines
664 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
body {
|
|
@apply bg-slate-950 text-slate-100 antialiased;
|
|
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
|
|
}
|
|
}
|
|
|
|
/* Custom scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #1e293b;
|
|
border-radius: 9999px;
|
|
border: 1px solid rgba(12, 179, 229, 0.15);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #0284c7;
|
|
}
|
|
|
|
.glow-cyan-sm {
|
|
box-shadow: 0 0 15px -3px rgba(12, 179, 229, 0.25);
|
|
}
|
|
|
|
.glow-cyan {
|
|
box-shadow: 0 0 25px -5px rgba(12, 179, 229, 0.35);
|
|
}
|
|
|