From d93991b1c564260ac459145ca764295f6b87746a Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 23 Dec 2016 21:47:30 -0800 Subject: [PATCH] remove unused utils, comment --- scss/utilities/_flex.scss | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scss/utilities/_flex.scss b/scss/utilities/_flex.scss index 93b6663787..ca713ef3e9 100644 --- a/scss/utilities/_flex.scss +++ b/scss/utilities/_flex.scss @@ -6,14 +6,10 @@ @include media-breakpoint-up($breakpoint) { $infix: breakpoint-infix($breakpoint, $grid-breakpoints); - // Flex column reordering .flex#{$infix}-first { order: -1; } .flex#{$infix}-last { order: 1; } .flex#{$infix}-unordered { order: 0; } - .flex#{$infix}-fill { flex: 1 1 auto; } - .flex#{$infix}-justify { flex: 1 1 100%; } - .flex#{$infix}-row { flex-direction: row !important; } .flex#{$infix}-column { flex-direction: column !important; }