mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-23 15:52:21 +01:00
18 lines
418 B
SCSS
18 lines
418 B
SCSS
// stylelint-disable declaration-no-important
|
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
@include media-breakpoint-up($breakpoint) {
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
|
|
|
@each $value in $displays {
|
|
.d#{$infix}-#{$value} { display: $value !important; }
|
|
}
|
|
}
|
|
}
|
|
|
|
@media print {
|
|
@each $value in $displays {
|
|
.d-print-#{$value} { display: $value !important; }
|
|
}
|
|
}
|