Last active
May 16, 2017 06:02
-
-
Save etoxin/89ff91c948b3b40bb3b2b74a3f6c308b to your computer and use it in GitHub Desktop.
Foundation 6 SCSS Cheat Sheet
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
// Create a row | |
.class { | |
@include grid-row; | |
} | |
// create a column with options | |
.class { | |
@include grid-column( | |
$columns: 10, | |
$gutters: 1 | |
); | |
} | |
// Centering a column | |
.class { | |
@include grid-column-position(center); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment