fix(flex-utils): add missing flex attributes

This commit is contained in:
Brandy Carney
2018-07-26 16:41:41 -04:00
parent f1826a6efc
commit 7c12e1bc8d

View File

@ -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
// --------------------------------------------------