aboutsummaryrefslogtreecommitdiffstats
path: root/assets/node_modules/bootstrap/scss/utilities/_flex.scss
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2018-02-11 16:18:12 -0600
committerMatt Rude <[email protected]>2018-02-11 16:18:12 -0600
commit49a482b86126cf0c0030344e3fc999fbe19bff28 (patch)
treef2b8b143823128f730cff2c17be35355c2bfc08b /assets/node_modules/bootstrap/scss/utilities/_flex.scss
parenteeda944e54797a58e58124e564d88934f5799644 (diff)
downloadxmpp-site-lite-49a482b86126cf0c0030344e3fc999fbe19bff28.tar.gz
xmpp-site-lite-49a482b86126cf0c0030344e3fc999fbe19bff28.tar.bz2
xmpp-site-lite-49a482b86126cf0c0030344e3fc999fbe19bff28.zip
Remove the rest of the unused bootstrap
Diffstat (limited to 'assets/node_modules/bootstrap/scss/utilities/_flex.scss')
-rw-r--r--assets/node_modules/bootstrap/scss/utilities/_flex.scss46
1 files changed, 0 insertions, 46 deletions
diff --git a/assets/node_modules/bootstrap/scss/utilities/_flex.scss b/assets/node_modules/bootstrap/scss/utilities/_flex.scss
deleted file mode 100644
index 8e47038..0000000
--- a/assets/node_modules/bootstrap/scss/utilities/_flex.scss
+++ /dev/null
@@ -1,46 +0,0 @@
-// stylelint-disable declaration-no-important
-
-// Flex variation
-//
-// Custom styles for additional flex alignment options.
-
-@each $breakpoint in map-keys($grid-breakpoints) {
- @include media-breakpoint-up($breakpoint) {
- $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
-
- .flex#{$infix}-row { flex-direction: row !important; }
- .flex#{$infix}-column { flex-direction: column !important; }
- .flex#{$infix}-row-reverse { flex-direction: row-reverse !important; }
- .flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }
-
- .flex#{$infix}-wrap { flex-wrap: wrap !important; }
- .flex#{$infix}-nowrap { flex-wrap: nowrap !important; }
- .flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }
-
- .justify-content#{$infix}-start { justify-content: flex-start !important; }
- .justify-content#{$infix}-end { justify-content: flex-end !important; }
- .justify-content#{$infix}-center { justify-content: center !important; }
- .justify-content#{$infix}-between { justify-content: space-between !important; }
- .justify-content#{$infix}-around { justify-content: space-around !important; }
-
- .align-items#{$infix}-start { align-items: flex-start !important; }
- .align-items#{$infix}-end { align-items: flex-end !important; }
- .align-items#{$infix}-center { align-items: center !important; }
- .align-items#{$infix}-baseline { align-items: baseline !important; }
- .align-items#{$infix}-stretch { align-items: stretch !important; }
-
- .align-content#{$infix}-start { align-content: flex-start !important; }
- .align-content#{$infix}-end { align-content: flex-end !important; }
- .align-content#{$infix}-center { align-content: center !important; }
- .align-content#{$infix}-between { align-content: space-between !important; }
- .align-content#{$infix}-around { align-content: space-around !important; }
- .align-content#{$infix}-stretch { align-content: stretch !important; }
-
- .align-self#{$infix}-auto { align-self: auto !important; }
- .align-self#{$infix}-start { align-self: flex-start !important; }
- .align-self#{$infix}-end { align-self: flex-end !important; }
- .align-self#{$infix}-center { align-self: center !important; }
- .align-self#{$infix}-baseline { align-self: baseline !important; }
- .align-self#{$infix}-stretch { align-self: stretch !important; }
- }
-}