Fix sizing
This commit is contained in:
21
src/App.css
21
src/App.css
@@ -2,10 +2,29 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
padding: 8px;
|
||||
box-sizing: border-box;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
background-image: url('./assets/images/background.jpg');
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.Container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.Header {
|
||||
height: 28px;
|
||||
margin-bottom: 8px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.Content {
|
||||
flex: 1;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
Reference in New Issue
Block a user