Skip to content

Commit

Permalink
Merge pull request #5022 from kobotoolbox/release-2.024.19-fix-logo
Browse files Browse the repository at this point in the history
Fix header logo
  • Loading branch information
noliveleger authored Jul 19, 2024
2 parents fd68e8a + a26c1ad commit 9ce92ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jsapp/scss/components/_kobo.navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,13 @@
}

.header__logo {
// NOTE: this is overrideable, see `/kpi/templates/index.html`
background-image: url("../img/kobologo_symbol.svg");
background-repeat: no-repeat;
background-position: 50% 50%;
width: 40px;
height: 40px;
// Needed for non-horizontal images
background-size: contain;
display: block;
}
Expand Down Expand Up @@ -348,7 +352,7 @@
}

.mdl-layout__header .header__logo {
background: url("../img/kobologo.svg") no-repeat 50% 50%;
background-image: url("../img/kobologo.svg");
width: 180px;
}
}
Expand Down

0 comments on commit 9ce92ea

Please sign in to comment.