18 lines
245 B
SCSS
18 lines
245 B
SCSS
|
.header {
|
||
|
height: 30vh;
|
||
|
background-image: url('/header.jpg');
|
||
|
background-size: cover;
|
||
|
margin-bottom: 3.25rem;
|
||
|
}
|
||
|
|
||
|
html,
|
||
|
body {
|
||
|
min-height: 100vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
body > footer {
|
||
|
margin-top: auto;
|
||
|
}
|