Spaces:
Build error
Build error
File size: 476 Bytes
cce8120 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | @tailwind base;
@tailwind components;
@tailwind utilities;
html, body, #root {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
background-color: #020617;
overflow: hidden;
}
/* Custom scrollbars for dark IDE theme */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #0f172a;
}
::-webkit-scrollbar-thumb {
background: #334155;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #475569;
}
|