From 7c12e1bc8de3a40f2a18b3d6436fb83b8216a588 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 26 Jul 2018 16:41:41 -0400 Subject: [PATCH] fix(flex-utils): add missing flex attributes --- core/src/css/flex-utils.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/core/src/css/flex-utils.scss b/core/src/css/flex-utils.scss index 3e373bb3bb..3c67c65351 100644 --- a/core/src/css/flex-utils.scss +++ b/core/src/css/flex-utils.scss @@ -26,10 +26,18 @@ align-self: baseline !important; } +[align-self-auto] { + align-self: auto !important; +} + // Flex Wrap // -------------------------------------------------- +[wrap] { + flex-wrap: wrap !important; +} + [nowrap] { flex-wrap: nowrap !important; } @@ -62,6 +70,10 @@ justify-content: space-between !important; } +[justify-content-evenly] { + justify-content: space-evenly !important; +} + // Align Items // --------------------------------------------------