22 lines
347 B
CSS
22 lines
347 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
line-height: 1.5;
|
|
font-weight: 400;
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
place-items: center;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
background-color: #020617;
|
|
}
|
|
|
|
#root {
|
|
width: 100%;
|
|
}
|