1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-21 21:40:48 +00:00

Fix $grid-breakpoints SCSS unit tests init (#38037)

This commit is contained in:
Julien Déramond 2023-02-13 19:46:49 +01:00 committed by GitHub
parent f5f6c5c4e3
commit 80a526621f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,10 +27,9 @@ $utilities: ();
$grid-breakpoints: ( $grid-breakpoints: (
xs: 0, xs: 0,
sm: 576px, sm: 333px,
md: 768px md: 666px
); ) !global;
@include assert() { @include assert() {
@include output() { @include output() {
@ -52,13 +51,13 @@ $utilities: ();
font-size: 1.25rem !important; font-size: 1.25rem !important;
} }
@media (min-width: 576px) { @media (min-width: 333px) {
.padding-sm-1rem { .padding-sm-1rem {
padding: 1rem !important; padding: 1rem !important;
} }
} }
@media (min-width: 768px) { @media (min-width: 666px) {
.padding-md-1rem { .padding-md-1rem {
padding: 1rem !important; padding: 1rem !important;
} }