Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
/* first test */ | |
$small: nothing; // fallback for images not uploaded | |
@mixin testSmall($s: null) { | |
@if ($s == nothing) { | |
display: none | |
} @else { | |
background: transparent url(img) no-repeat 50% 50%; | |
background-size: cover; | |
padding-bottom: 94.85%; | |
} | |
} | |
@include testSmall($small); | |
/* second test */ | |
$small: any other value in the world; // link or value for uploaded image | |
@mixin testSmall($s: null) { | |
@if ($s == nothing) { | |
display: none | |
} @else { | |
background: transparent url(img) no-repeat 50% 50%; | |
background-size: cover; | |
padding-bottom: 94.85%; | |
} | |
} | |
@include testSmall($small); |
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
/* first test */ | |
display: none; | |
/* second test */ | |
background: transparent url(img) no-repeat 50% 50%; | |
background-size: cover; | |
padding-bottom: 94.85%; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment