Set all sections to 100vh - header height
This commit is contained in:
parent
7f7c71ffcd
commit
20f65d7464
|
@ -63,6 +63,7 @@
|
|||
"vinyl-source-stream": "^1.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"sanitize.css": "^4.1.0"
|
||||
"sanitize.css": "^4.1.0",
|
||||
"vanilla-tilt": "^1.4.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
.get-involved {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-height: calc(100vh - #{$header-height--desktop});
|
||||
color: $color-white;
|
||||
background-color: $color-gray;
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
.introduction {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-height: calc(100vh - #{$header-height--desktop});
|
||||
color: white;
|
||||
background-color: $color-black;
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
.project {
|
||||
position: relative;
|
||||
min-height: calc(100vh - #{$header-height--desktop});
|
||||
padding: 25px;
|
||||
color: $color-white;
|
||||
background-color: $color-orange;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.section {
|
||||
width: 100%;
|
||||
min-height: 100vh;
|
||||
min-height: calc(100vh - #{$header-height--desktop});
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
.structure {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
min-height: calc(100vh - #{$header-height--desktop});
|
||||
margin-top: 10px;
|
||||
color: $color-scarlet;
|
||||
background-color: $color-white;
|
||||
|
|
Loading…
Reference in New Issue