Created
December 8, 2015 16:41
-
-
Save wnstn/2517036ad7ac11c0d18c to your computer and use it in GitHub Desktop.
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) | |
// ---- | |
$reveal: nil; | |
@media only screen and (min-width: 1025px) { | |
// tests whether or not a reveal is true, if so it changes bg attachment to fixed | |
@mixin testReveal($r: null) { | |
@if ($r != 'false') { | |
background-attachment: fixed; | |
background-size: 1060px; | |
} | |
} | |
@include testReveal($reveal); | |
} |
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
@media only screen and (min-width: 1025px) { | |
background-attachment: fixed; | |
background-size: 1060px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment