Skip to content

Commit

Permalink
feat: add flexShrink and flexGrow props (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
merlindorin committed Sep 8, 2020
1 parent a079717 commit 9492a00
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/system/src/styles/flexboxes.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ export const flexWrap = style({
prop: 'flexWrap',
})

export const flexGrow = style({
prop: 'flexGrow',
})

export const flexShrink = style({
prop: 'flexShrink',
})

export const flexBasis = style({
prop: 'flexBasis',
themeGet: getPercent,
Expand Down Expand Up @@ -55,6 +63,8 @@ export const flexboxes = compose(
justifyItems,
flexWrap,
flexBasis,
flexShrink,
flexGrow,
flexDirection,
flex,
justifySelf,
Expand Down

0 comments on commit 9492a00

Please sign in to comment.