mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-21 12:44:43 +00:00
17 lines
418 B
SCSS
17 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; }
|
|
}
|
|
}
|