Skip to content

Instantly share code, notes, and snippets.

@gspice
Forked from jdelia/_header-scss
Created March 6, 2017 00:41
Show Gist options
  • Save gspice/c5b122bdc0bf03c31858cb50e3f439ff to your computer and use it in GitHub Desktop.
Save gspice/c5b122bdc0bf03c31858cb50e3f439ff to your computer and use it in GitHub Desktop.
Adding SVG Logo to Utility Pro theme
.header-image .site-title a {
background: url(images/logo.svg) center center no-repeat;
float: left;
min-height: 60px;
width: 100%;
@include media($medium-screen-up) {
background-position: left center;
}
}
/* Logo, hide text */
.header-image .site-title a {
background: url(images/logo.svg) center center no-repeat;
float: left;
min-height: 60px;
width: 100%;
}
@media screen and (min-width: 1023px) {
.header-image .site-title a {
background-position: left center;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment