Skip to content

Instantly share code, notes, and snippets.

@shaunbent
Created November 26, 2015 14:26
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/cd5cb1c567f385a6f4ef to your computer and use it in GitHub Desktop.
Save shaunbent/cd5cb1c567f385a6f4ef to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
.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