You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
691 B
19 lines
691 B
8 years ago
|
//
|
||
|
// Display utilities
|
||
|
//
|
||
|
|
||
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
||
|
@include media-breakpoint-up($breakpoint) {
|
||
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
||
|
|
||
|
.d#{$infix}-none { display: none !important; }
|
||
|
.d#{$infix}-inline { display: inline !important; }
|
||
|
.d#{$infix}-inline-block { display: inline-block !important; }
|
||
|
.d#{$infix}-block { display: block !important; }
|
||
|
.d#{$infix}-table { display: table !important; }
|
||
|
.d#{$infix}-table-cell { display: table-cell !important; }
|
||
|
.d#{$infix}-flex { display: flex !important; }
|
||
|
.d#{$infix}-inline-flex { display: inline-flex !important; }
|
||
|
}
|
||
|
}
|