From 519ecc1c69ddf1f8ba69c021c4450ee131cee391 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 24 Jan 2017 00:01:44 -0800 Subject: Rename order utilities to intended class names (#21739) * rename order utilities to intended class names * Documentation fixes. --- scss/utilities/_flex.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scss') 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; } -- cgit v1.2.3