14 lines
199 B
CSS
14 lines
199 B
CSS
|
|
@import "tailwindcss";
|
||
|
|
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
min-height: 100vh;
|
||
|
|
background-color: #0f172a;
|
||
|
|
color: #e2e8f0;
|
||
|
|
font-family: system-ui, -apple-system, sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
#root {
|
||
|
|
min-height: 100vh;
|
||
|
|
}
|