IngSeb0's picture
Deploy Next.js frontend Docker Space
2200d51
Raw
History Blame Contribute Delete
473 Bytes
@import "tailwindcss";
:root {
--background: #030712;
--foreground: #f9fafb;
}
body {
background: var(--background);
color: var(--foreground);
font-family: system-ui, -apple-system, sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #111827;
}
::-webkit-scrollbar-thumb {
background: #374151;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #4b5563;
}