Skip to content

Instantly share code, notes, and snippets.

@peduarte
Created January 21, 2016 13:54
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 peduarte/44da25bc3778c715fc83 to your computer and use it in GitHub Desktop.
Save peduarte/44da25bc3778c715fc83 to your computer and use it in GitHub Desktop.
/**
* dummy-module.scss
*
* This example shows a module which spans:
* 3 columns on mobile (mobile first approach)
* 4 columns on tablet
* 3 columns on desktop
*/
.DummyModule {
@include tt-span(3);
@include medium {
@include tt-span(4);
}
@include wide {
@include tt-span(3);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment