Created
February 24, 2014 16:14
-
-
Save yellowberri-snippets/9191320 to your computer and use it in GitHub Desktop.
SASS: Quick Columns Mixin
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
| @mixin left-col($width: '68%') { | |
| float:left; | |
| width:#{$width}; | |
| @include clearfix; | |
| @include breakpoint(narrowColumn) { | |
| float:none; | |
| width:100%; | |
| } | |
| } | |
| @mixin right-col($width: '30%') { | |
| float:right; | |
| width:#{$width}; | |
| @include clearfix; | |
| @include breakpoint(narrowColumn) { | |
| float:none; | |
| width:100%; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment