30 lines
478 B
CSS
30 lines
478 B
CSS
.App {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background-image: url('./assets/images/background.jpg');
|
|
background-size: cover;
|
|
}
|
|
|
|
.AppContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.AppHeader {
|
|
height: 28px;
|
|
margin-bottom: 8px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.AppContent {
|
|
flex: 1;
|
|
box-sizing: border-box;
|
|
} |