26 lines
448 B
CSS
26 lines
448 B
CSS
.App {
|
|
margin: 0;
|
|
padding: var(--default_spacing);
|
|
box-sizing: border-box;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background-image: url('./assets/images/background2.jpg');
|
|
background-size: cover;
|
|
}
|
|
|
|
.AppContainer {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.AppHeader {
|
|
height: 28px;
|
|
margin-bottom: var(--default_spacing);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.AppContent {
|
|
height: calc(100% - 36px);
|
|
box-sizing: border-box;
|
|
} |