Created
July 26, 2013 19:12
-
-
Save raffone/6091448 to your computer and use it in GitHub Desktop.
Example of a responsive form grid with 3 columns on desktop, 2 on tablets, and 1 on smartphones with the Rapido Framework.
This file contains 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
.example-form { | |
.form__group { | |
@include columns(4, $nth-omega: 3n, $media: desk); | |
@include columns(6, $nth-omega: 2n, $media: lap); | |
@include columns(12, $media: palm); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment