Skip to content

Commit c0670cc

Browse files
DavydeVriesreinink
andauthored
Add justify-normal and justify-stretch classes (#10560)
* Added justify-normal class * Update corePlugins.js * Add `justify-normal` utility --------- Co-authored-by: Jonathan Reinink <[email protected]>
1 parent 59b7e70 commit c0670cc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/corePlugins.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,12 +1218,14 @@ export let corePlugins = {
12181218

12191219
justifyContent: ({ addUtilities }) => {
12201220
addUtilities({
1221+
'.justify-normal': { 'justify-content': 'normal' },
12211222
'.justify-start': { 'justify-content': 'flex-start' },
12221223
'.justify-end': { 'justify-content': 'flex-end' },
12231224
'.justify-center': { 'justify-content': 'center' },
12241225
'.justify-between': { 'justify-content': 'space-between' },
12251226
'.justify-around': { 'justify-content': 'space-around' },
12261227
'.justify-evenly': { 'justify-content': 'space-evenly' },
1228+
'.justify-stretch': { 'justify-content': 'stretch' },
12271229
})
12281230
},
12291231

0 commit comments

Comments
 (0)