17 lines
331 B
CSS
17 lines
331 B
CSS
|
|
@import "tailwindcss";
|
||
|
|
|
||
|
|
html, body, #root {
|
||
|
|
height: 100%;
|
||
|
|
background: #000;
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", sans-serif;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.no-scrollbar::-webkit-scrollbar {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
.no-scrollbar {
|
||
|
|
scrollbar-width: none;
|
||
|
|
}
|