servicepoint-tanks/tank-frontend/src/index.css

31 lines
389 B
CSS
Raw Normal View History

2024-04-13 23:07:08 +02:00
* {
box-sizing: border-box;
}
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;
}
#root {
display: flex;
2024-04-13 23:07:08 +02:00
flex-direction: row;
align-items: center;
2024-04-13 23:07:08 +02:00
width: 100vw;
height: 100vh;
}
.grow {
flex-grow: 1;
}