Skip to content

Commit

Permalink
Update breakpoint to match editor tablet emulator width (#404)
Browse files Browse the repository at this point in the history
Co-authored-by: svinod <svinod@adobe.com>
  • Loading branch information
sharanyavinod and sharanyavinod authored May 16, 2023
1 parent 4a039aa commit 43c6191
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
}

/* phone breakpoint */
@media (max-width: 768px) {
@media (max-width: 767px) {
.aem-Grid {
.generate-grid(phone, @max_col);
}
}

/* tablet breakpoint */
@media (min-width: 769px) and (max-width: 1200px) {
@media (min-width: 768px) and (max-width: 1200px) {
.aem-Grid {
.generate-grid(tablet, @max_col);
}
Expand Down
2 changes: 1 addition & 1 deletion ui.frontend/src/main/webpack/base/sass/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $gutter-padding: 14px;
$max-width: 1164px;
$max-body-width: 1680px;
$screen-xsmall: 475px;
$screen-small: 768px;
$screen-small: 767px;
$screen-medium: 1024px;
$screen-large: 1200px;

Expand Down

0 comments on commit 43c6191

Please sign in to comment.