Skip to content

Instantly share code, notes, and snippets.

@etoxin
Last active May 16, 2017 06:02
Show Gist options
  • Save etoxin/89ff91c948b3b40bb3b2b74a3f6c308b to your computer and use it in GitHub Desktop.
Save etoxin/89ff91c948b3b40bb3b2b74a3f6c308b to your computer and use it in GitHub Desktop.
Foundation 6 SCSS Cheat Sheet
// 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