Added missing closing brackets in partials/header.hbs styles (#521)
This commit is contained in:
parent
273e987240
commit
047c7c0c9c
1 changed files with 23 additions and 21 deletions
|
@ -18,7 +18,7 @@ with a `no-image` class so we can style it accordingly.
|
|||
background-image: url({{img_url background size='xl'}});
|
||||
}
|
||||
@media(max-width: 1000px) {
|
||||
.responsive-header-img {
|
||||
.responsive-header-img {
|
||||
background-image: url({{img_url background size='l'}});
|
||||
background-image: -webkit-image-set(
|
||||
url({{img_url background size='l'}}) 1x,
|
||||
|
@ -28,9 +28,10 @@ with a `no-image` class so we can style it accordingly.
|
|||
url({{img_url background size='l'}}) 1x,
|
||||
url({{img_url background size='xl'}}) 2x
|
||||
);
|
||||
}
|
||||
}
|
||||
@media(max-width: 600px) {
|
||||
.responsive-header-img {
|
||||
.responsive-header-img {
|
||||
background-image: url({{img_url background size='m'}});
|
||||
background-image: -webkit-image-set(
|
||||
url({{img_url background size='m'}}) 1x,
|
||||
|
@ -40,6 +41,7 @@ with a `no-image` class so we can style it accordingly.
|
|||
url({{img_url background size='m'}}) 1x,
|
||||
url({{img_url background size='l'}}) 2x
|
||||
);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<header class="site-header outer responsive-header-img">
|
||||
|
|
Loading…
Reference in a new issue