1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-28 15:50:01 +02:00

Rename order utilities to intended class names (#21739)

* rename order utilities to intended class names

* Documentation fixes.
This commit is contained in:
Mark Otto
2017-01-24 00:01:44 -08:00
committed by GitHub
parent b509dbe75b
commit 519ecc1c69
3 changed files with 9 additions and 9 deletions

View File

@@ -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; }