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