17 lines
245 B
SCSS
17 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;
|
|
}
|