-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed indent. added styles for controls section. added width to main
- Loading branch information
1 parent
6dcd9e8
commit 331da6f
Showing
1 changed file
with
14 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
.main-content { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
background-color: #62798c; | ||
height: calc(100vh - 5rem); /* viewport height minus the height of the header */ | ||
} | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
height: calc(100vh - 5rem); /* viewport height minus the height of the header */ | ||
width: 100%; | ||
max-width: 40rem; | ||
margin: 0 auto; | ||
} | ||
|
||
.controls-section { | ||
display: flex; | ||
justify-content: space-evenly; | ||
width: 100%; | ||
} |