Skip to content

Commit

Permalink
fix(flex-utils): add missing flex attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Jul 26, 2018
1 parent f1826a6 commit 7c12e1b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions core/src/css/flex-utils.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down Expand Up @@ -62,6 +70,10 @@
justify-content: space-between !important;
}

[justify-content-evenly] {
justify-content: space-evenly !important;
}


// Align Items
// --------------------------------------------------
Expand Down

0 comments on commit 7c12e1b

Please sign in to comment.