aboutsummaryrefslogtreecommitdiff
path: root/scss/utilities
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-01-24 00:01:44 -0800
committerGitHub <[email protected]>2017-01-24 00:01:44 -0800
commit519ecc1c69ddf1f8ba69c021c4450ee131cee391 (patch)
treebca04a1e0aa5fda8099b2476c60e881067cc582f /scss/utilities
parentb509dbe75bb897c5728e941688d13a138d6adc39 (diff)
downloadbootstrap-519ecc1c69ddf1f8ba69c021c4450ee131cee391.tar.xz
bootstrap-519ecc1c69ddf1f8ba69c021c4450ee131cee391.zip
Rename order utilities to intended class names (#21739)
* rename order utilities to intended class names * Documentation fixes.
Diffstat (limited to 'scss/utilities')
-rw-r--r--scss/utilities/_flex.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/utilities/_flex.scss b/scss/utilities/_flex.scss
index 1b98aaa3f..cc696785d 100644
--- a/scss/utilities/_flex.scss
+++ b/scss/utilities/_flex.scss
@@ -6,9 +6,9 @@
@include media-breakpoint-up($breakpoint) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
- .flex#{$infix}-first { order: -1; }
- .flex#{$infix}-last { order: 1; }
- .flex#{$infix}-unordered { order: 0; }
+ .order#{$infix}-first { order: -1; }
+ .order#{$infix}-last { order: 1; }
+ .order#{$infix}-0 { order: 0; }
.flex#{$infix}-row { flex-direction: row !important; }
.flex#{$infix}-column { flex-direction: column !important; }