Skip to content

Instantly share code, notes, and snippets.

@shaunbent
Created December 15, 2015 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaunbent/404d98371577a330a94e to your computer and use it in GitHub Desktop.
Save shaunbent/404d98371577a330a94e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@mixin sport-brand($colour: 'black') {
@if $colour == 'white' {
color: #fff;
.no-svg & {
background-position: 0 -30px;
}
} @else {
color: #000;
.no-svg & {
background-position: 0 0;
}
}
}
.theme--get-inspired {
.global-header__logo-img {
@include sport-brand('white');
}
}
/* Expected Output */
.theme--get-inspired .no-svg .global-header__logo-img {
background-position: 0 -30px;
}
.theme--get-inspired .global-header__logo-img {
color: #fff;
}
.no-svg .theme--get-inspired .global-header__logo-img {
background-position: 0 -30px;
}
/* Expected Output */
.theme--get-inspired .no-svg .global-header__logo-img {
background-position: 0 -30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment