Skip to content

Instantly share code, notes, and snippets.

@ncoden
Created April 1, 2016 13:13
Show Gist options
  • Save ncoden/469cdf561f6c6ec012b15f30193b7fc5 to your computer and use it in GitHub Desktop.
Save ncoden/469cdf561f6c6ec012b15f30193b7fc5 to your computer and use it in GitHub Desktop.
@include breakpoint(medium) {
.medium-float-left { float: left; }
.medium-float-right { float: right; }
.medium-no-float { float: none; }
}
@include breakpoint(large) {
.large-float-left { float: left; }
.large-float-right { float: right; }
.large-no-float { float: none; }
}
@include breakpoint(xlarge) {
.xlarge-float-left { float: left; }
.xlarge-float-right { float: right; }
.xlarge-no-float { float: none; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment