Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/277 - Fixes issues with the iPad Retina's Emulator's Layout mode not being reflected #279

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
#277 - Fixed off by one error in Small responsive screen limits
  • Loading branch information
davidjgonzalez authored Aug 5, 2021
commit e0e4406911452e5386715726b5eaa09f219a92f9
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/* maximum amount of grid cells to be provided */
@max_col: 12;
@screen-small: 767px;
@screen-small: 768px;
@screen-medium: 1024px;
@screen-large: 1200px;
@gutter-padding: 14px;
Expand Down Expand Up @@ -48,4 +48,4 @@
.responsivegrid.aem-GridColumn {
padding-left: 0;
padding-right: 0;
}
}