Last active
March 6, 2017 00:41
-
-
Save jdelia/80ac5c0131035682f734 to your computer and use it in GitHub Desktop.
Adding SVG Logo to Utility Pro theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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