aboutsummaryrefslogtreecommitdiffstats
path: root/assets/node_modules/bootstrap/scss/utilities/_spacing.scss
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2018-02-03 21:08:46 -0600
committerMatt Rude <[email protected]>2018-02-03 21:08:46 -0600
commitc5c60729062cc3d89be7447b5d330367417aa6f7 (patch)
tree74330b48908247623f48b01420d833c7feb3fab7 /assets/node_modules/bootstrap/scss/utilities/_spacing.scss
parent0c0cde3923440b2d293549c7e430a38082cc0457 (diff)
downloadxmpp-site-lite-c5c60729062cc3d89be7447b5d330367417aa6f7.tar.gz
xmpp-site-lite-c5c60729062cc3d89be7447b5d330367417aa6f7.tar.bz2
xmpp-site-lite-c5c60729062cc3d89be7447b5d330367417aa6f7.zip
Update
Diffstat (limited to 'assets/node_modules/bootstrap/scss/utilities/_spacing.scss')
-rw-r--r--assets/node_modules/bootstrap/scss/utilities/_spacing.scss51
1 files changed, 51 insertions, 0 deletions
diff --git a/assets/node_modules/bootstrap/scss/utilities/_spacing.scss b/assets/node_modules/bootstrap/scss/utilities/_spacing.scss
new file mode 100644
index 0000000..b2e2354
--- /dev/null
+++ b/assets/node_modules/bootstrap/scss/utilities/_spacing.scss
@@ -0,0 +1,51 @@
+// stylelint-disable declaration-no-important
+
+// Margin and Padding
+
+@each $breakpoint in map-keys($grid-breakpoints) {
+ @include media-breakpoint-up($breakpoint) {
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
+
+ @each $prop, $abbrev in (margin: m, padding: p) {
+ @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} {
+ #{$prop}-right: $length !important;
+ }
+ .#{$abbrev}b#{$infix}-#{$size},
+ .#{$abbrev}y#{$infix}-#{$size} {
+ #{$prop}-bottom: $length !important;
+ }
+ .#{$abbrev}l#{$infix}-#{$size},
+ .#{$abbrev}x#{$infix}-#{$size} {
+ #{$prop}-left: $length !important;
+ }
+ }
+ }
+
+ // Some special margin utils
+ .m#{$infix}-auto { margin: auto !important; }
+ .mt#{$infix}-auto,
+ .my#{$infix}-auto {
+ margin-top: auto !important;
+ }
+ .mr#{$infix}-auto,
+ .mx#{$infix}-auto {
+ margin-right: auto !important;
+ }
+ .mb#{$infix}-auto,
+ .my#{$infix}-auto {
+ margin-bottom: auto !important;
+ }
+ .ml#{$infix}-auto,
+ .mx#{$infix}-auto {
+ margin-left: auto !important;
+ }
+ }
+}