Created
November 26, 2015 14:26
-
-
Save shaunbent/cd5cb1c567f385a6f4ef to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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) | |
// ---- | |
$gel-grid-1280-toggle-class: null !default; | |
$gel-grid-enable--1280-breakpoint: true !default; | |
@mixin gel-wrap-1280-breakpoint() { | |
content: '1280 CSS'; | |
} | |
@mixin gel-wrap() { | |
content: 'GEL Wrap CSS'; | |
@if $gel-grid-enable--1280-breakpoint { | |
@if $gel-grid-1280-toggle-class != null { | |
.#{$gel-grid-1280-toggle-class} & { | |
@include gel-wrap-1280-breakpoint; | |
} | |
} @else { | |
@include gel-wrap-1280-breakpoint; | |
} | |
} | |
} | |
.gel-wrap { | |
@include gel-wrap; | |
} |
This file contains hidden or 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
.gel-wrap { | |
content: 'GEL Wrap CSS'; | |
content: '1280 CSS'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment