2024-04-13 23:07:08 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2024-04-07 00:33:54 +02:00
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
2024-04-13 14:14:50 +02:00
|
|
|
background-color: black;
|
2024-04-13 23:07:08 +02:00
|
|
|
color: white;
|
2024-04-07 00:33:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#root {
|
|
|
|
display: flex;
|
2024-04-13 23:07:08 +02:00
|
|
|
flex-direction: row;
|
2024-04-07 00:33:54 +02:00
|
|
|
align-items: center;
|
2024-04-13 23:07:08 +02:00
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grow {
|
|
|
|
flex-grow: 1;
|
2024-04-07 00:33:54 +02:00
|
|
|
}
|