Created
August 16, 2013 04:01
-
-
Save erikflowers/6247215 to your computer and use it in GitHub Desktop.
When using only mixins to make the columns, without a mixin at the mobile base level, the div doesn't have the styles that it would when used in HTML: position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
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
.left { | |
// What goes here? | |
@media(min-width: @screen-tablet) { | |
.make-sm-column(6); | |
} | |
@media(min-width: @screen-desktop) { | |
.make-md-column(3); | |
} | |
@media(min-width: @screen-large-desktop) { | |
.make-lg-column(9); | |
} | |
} | |
.right { | |
// What goes here? | |
@media(min-width: @screen-tablet) { | |
.make-sm-column(6); | |
} | |
@media(min-width: @screen-desktop) { | |
.make-md-column(9); | |
} | |
@media(min-width: @screen-large-desktop) { | |
.make-lg-column(3); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment