2016-04-03 05:11:18 +08:00
|
|
|
//
|
|
|
|
// Display utilities
|
|
|
|
//
|
|
|
|
|
2016-11-01 12:27:56 +08:00
|
|
|
|
|
|
|
@each $breakpoint in map-keys($grid-breakpoints) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
2016-11-29 05:23:59 +08:00
|
|
|
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
2016-11-01 12:27:56 +08:00
|
|
|
|
2016-11-29 05:23:59 +08:00
|
|
|
.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; }
|
2016-12-23 12:51:48 +08:00
|
|
|
.d#{$infix}-flex-inline { display: inline-flex !important; }
|
2016-11-01 12:27:56 +08:00
|
|
|
}
|
2016-04-03 05:11:18 +08:00
|
|
|
}
|