Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/site/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ html, body {
}
}

// Uncomment for tablet usecase.
// @media (min-width: 769px) and (max-width: 1200px) {
// .aem-Grid {
// @include generate-grid(tablet, $max_col, left);
// }
// }

// If RTL support not needed then comment this block for better performance.
[dir="rtl"] {
.aem-Grid {
@include generate-grid(default, $max_col, right);
Expand All @@ -26,4 +34,11 @@ html, body {
@include generate-grid(phone, $max_col, right);
}
}

// Uncomment for tablet usecase.
// @media (min-width: 769px) and (max-width: 1200px) {
// .aem-Grid {
// @include generate-grid(tablet, $max_col, right);
// }
// }
}