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

XXL grid size #19359

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ $grid-breakpoints: (
sm: 544px,
md: 768px,
lg: 992px,
xl: 1200px
xl: 1200px,
xxl: 1560px
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I presume this is a typo and you meant 1520px here?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, oops

) !default;
@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");

Expand All @@ -136,7 +137,8 @@ $container-max-widths: (
sm: 576px,
md: 720px,
lg: 940px,
xl: 1140px
xl: 1140px,
xxl: 1482px
) !default;
@include _assert-ascending($container-max-widths, "$container-max-widths");

Expand Down
7 changes: 5 additions & 2 deletions scss/bootstrap-grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ $grid-breakpoints: (
// Large screen / desktop
lg: 992px,
// Extra large screen / wide desktop
xl: 1200px
xl: 1200px,
// Extra Extra large screen / wide desktop
xxl: 1520px
) !default;


Expand All @@ -36,7 +38,8 @@ $container-max-widths: (
sm: 576px,
md: 720px,
lg: 940px,
xl: 1140px
xl: 1140px,
xxl: 1482px
) !default;


Expand Down