Skip to content

Commit b7b5608

Browse files
author
Hector Arce De Las Heras
committed
Include justify_items to getStyles function
1 parent 6d6413f commit b7b5608

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/utils/getStyles/getStyles.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ export const getDisplayStyles = (prop?: DisplayTypes): CSSProp => {
165165
flex_shrink,
166166
flex_basis,
167167
justify_content,
168+
justify_items,
168169
align_items,
169170
align_self,
170171
align_content,
@@ -210,6 +211,7 @@ export const getDisplayStyles = (prop?: DisplayTypes): CSSProp => {
210211
${flex_shrink && `flex-shrink: ${flex_shrink};`}
211212
${flex_basis && `flex-basis: ${flex_basis};`}
212213
${justify_content && `justify-content: ${justify_content};`}
214+
${justify_items && `justify-items: ${justify_items};`}
213215
${align_items && `align-items: ${align_items};`}
214216
${align_self && `align-self: ${align_self};`}
215217
${align_content && `align-content: ${align_content};`}

0 commit comments

Comments
 (0)