Merge pull request #3651 from betagouv/fix-header-logo

stylesheet: fix header logo URL
This commit is contained in:
Mathieu Magnin 2019-03-20 15:47:41 +01:00 committed by GitHub
commit c1743d63d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}