Skip to content

Instantly share code, notes, and snippets.

@Greg-Boggs
Last active December 23, 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 Greg-Boggs/6611390 to your computer and use it in GitHub Desktop.
Save Greg-Boggs/6611390 to your computer and use it in GitHub Desktop.
Responsive Views with Aurora/Singularity and Views Responsive Grid
.views-responsive-grid-vertical {
.views-column-1 {
@include grid-span(4, 1);
@include breakpoint($mobile) {
@include float-span(12, 'first');
}
}
.views-column-2 {
@include grid-span(4, 5);
@include breakpoint($mobile) {
@include float-span(12, 'first');
}
}
.views-column-3 {
@include grid-span(4, 9);
@include breakpoint($mobile) {
@include float-span(12, 'first');
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment