anycoder-0b0eca81 / styles /globals.css
Juanfa's picture
Upload styles/globals.css with huggingface_hub
d22b090 verified
raw
history blame contribute delete
516 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html,
body {
max-width: 100vw;
overflow-x: hidden;
background-color: #020617;
color: #f8fafc;
}
canvas {
display: block;
}
.glass-panel {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}