Created
April 1, 2016 13:13
-
-
Save ncoden/469cdf561f6c6ec012b15f30193b7fc5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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