Advertisement
enyo

Untitled

Jul 19th, 2012
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.28 KB | None | 0 0
  1.   @mixin respondTo($media) {
  2.     @if $media == smallScreen {
  3.       @media only screen and (max-width: $screenSmall - 1) { @content; }
  4.     }
  5.   }
  6.  
  7.   @mixin mobileClearfix() {
  8.     @include respondTo(smallScreen) {
  9.       &:before, &:after { content: ""; display: table; }
  10.     }
  11.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement