mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 18:07:35 +01:00
31 lines
522 B
SCSS
31 lines
522 B
SCSS
// ===========================================================================
|
|
// GRID
|
|
|
|
|
|
|
|
.container {
|
|
padding: {
|
|
right: $gutter-width * 2;
|
|
left: $gutter-width * 2;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// iPhone
|
|
|
|
@mixin grid-iPhone {
|
|
.container { @extend %clearfix-iPhone; }
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// SMALL TABLET
|
|
|
|
@mixin grid-small-tablet {
|
|
.container {
|
|
@include susy-grid-background;
|
|
}
|
|
} |