17 lines
310 B
SCSS
17 lines
310 B
SCSS
/***** Hero component *****/
|
|
.hero {
|
|
background-image: url($homepage_background_image);
|
|
background-position: center;
|
|
background-size: cover;
|
|
height: 300px;
|
|
padding: 0 20px;
|
|
text-align: center;
|
|
width: 100%;
|
|
|
|
&-inner {
|
|
@include vertical-align;
|
|
max-width: 610px;
|
|
margin: 0 auto;
|
|
}
|
|
}
|