Skip to content

Commit

Permalink
Add breakpoints for large container paddings
Browse files Browse the repository at this point in the history
  • Loading branch information
andmor- committed Jan 20, 2024
1 parent 33d1355 commit b5c1bf3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scss/utility/elements.scss
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ h6 {
.container-xl, .container-xxl {
padding: 0 calc(var(--bs-gutter-x) * .5);

@media (min-width: #{$screen-lg-min}) {
padding: 0 calc(var(--bs-gutter-x) * 1);
}

@media (min-width: #{$screen-xl-min}) {
padding: 0 calc(var(--bs-gutter-x) * 3);
}

@media (min-width: #{$screen-xxl-min}) {
padding: 0 calc(var(--bs-gutter-x) * 5);
}
Expand Down

0 comments on commit b5c1bf3

Please sign in to comment.