stylesheet: fix header logo URL

This commit is contained in:
Pierre de La Morinerie 2019-03-20 15:23:35 +01:00
parent a1156c8c41
commit 5e4660b827

View file

@ -30,20 +30,20 @@ $header-mobile-breakpoint: 550px;
background-repeat: no-repeat;
// Logo large
background-image: url("/assets/header/logo-ds-wide.svg");
background-image: image-url("header/logo-ds-wide.svg");
width: 360px;
margin-right: 4 * $default-spacer;
// Logo normal
@media (max-width: $header-landing-breakpoint) {
background-image: url("/assets/header/logo-ds.svg");
background-image: image-url("header/logo-ds.svg");
width: 132px;
margin-right: $default-spacer;
}
// Logo narrow
@media (max-width: $header-mobile-breakpoint) {
background-image: url("/assets/header/logo-ds-narrow.svg");
background-image: image-url("header/logo-ds-narrow.svg");
width: 32px;
margin-right: 0;
}