0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00
Bootstrap/scss/utilities/_spacing.scss

50 lines
1.3 KiB
SCSS
Raw Normal View History

// Margin and Padding
@each $breakpoint in map-keys($grid-breakpoints) {
2016-12-25 15:11:09 -07:00
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
2016-12-25 15:11:09 -07:00
@each $prop, $abbrev in (margin: m, padding: p) {
2017-03-05 14:07:38 -07:00
@each $size, $length in $spacers {
.#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
.#{$abbrev}t#{$infix}-#{$size},
.#{$abbrev}y#{$infix}-#{$size} {
#{$prop}-top: $length !important;
}
.#{$abbrev}r#{$infix}-#{$size},
.#{$abbrev}x#{$infix}-#{$size} {
2017-03-05 14:07:38 -07:00
#{$prop}-right: $length !important;
}
.#{$abbrev}b#{$infix}-#{$size},
.#{$abbrev}y#{$infix}-#{$size} {
2017-03-05 14:07:38 -07:00
#{$prop}-bottom: $length !important;
}
.#{$abbrev}l#{$infix}-#{$size},
.#{$abbrev}x#{$infix}-#{$size} {
#{$prop}-left: $length !important;
}
}
}
2016-12-25 13:20:04 -08:00
2016-12-25 15:11:09 -07:00
// Some special margin utils
.m#{$infix}-auto { margin: auto !important; }
.mt#{$infix}-auto,
.my#{$infix}-auto {
margin-top: auto !important;
}
.mr#{$infix}-auto,
2016-12-24 18:11:43 -08:00
.mx#{$infix}-auto {
margin-right: auto !important;
}
.mb#{$infix}-auto,
2016-12-24 18:52:45 -08:00
.my#{$infix}-auto {
2016-12-25 15:11:09 -07:00
margin-bottom: auto !important;
2016-12-24 18:52:45 -08:00
}
.ml#{$infix}-auto,
.mx#{$infix}-auto {
margin-left: auto !important;
}
2016-12-24 18:11:43 -08:00
}
}