Skip to content

Commit

Permalink
Add tests for grid classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
louismaximepiton committed Oct 22, 2024
1 parent bb8b502 commit 60b7093
Show file tree
Hide file tree
Showing 3 changed files with 5,748 additions and 10 deletions.
6 changes: 6 additions & 0 deletions scss/_containers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@

// Responsive containers that are 100% wide until a breakpoint
@each $breakpoint, $container-max-width in $container-max-widths {
@if $breakpoint == 2xl {
.container-xxl {
@extend .container-fluid;
}
}

.container-#{$breakpoint} {
@extend .container-fluid;
}
Expand Down
1 change: 0 additions & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,6 @@ $grid-breakpoints: (
$breakpoint-3xl: map-get($grid-breakpoints, 3xl);
$grid-breakpoints: map-remove($grid-breakpoints, 2xl, 3xl);
$grid-breakpoints: map-merge($grid-breakpoints, (xxl: $breakpoint-2xl, 2xl: $breakpoint-2xl, 3xl: $breakpoint-3xl));
@debug $grid-breakpoints;
}

@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
Expand Down
Loading

0 comments on commit 60b7093

Please sign in to comment.