Skip to content

Commit

Permalink
Fix $grid-breakpoints SCSS unit tests init (#38037)
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-deramond authored Feb 13, 2023
1 parent f5f6c5c commit 80a5266
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions scss/tests/utilities/_api.test.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ $utilities: ();

$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px
);

sm: 333px,
md: 666px
) !global;

@include assert() {
@include output() {
Expand All @@ -52,13 +51,13 @@ $utilities: ();
font-size: 1.25rem !important;
}

@media (min-width: 576px) {
@media (min-width: 333px) {
.padding-sm-1rem {
padding: 1rem !important;
}
}

@media (min-width: 768px) {
@media (min-width: 666px) {
.padding-md-1rem {
padding: 1rem !important;
}
Expand Down

0 comments on commit 80a5266

Please sign in to comment.