We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
justify-normal
justify-stretch
1 parent 59b7e70 commit c0670ccCopy full SHA for c0670cc
src/corePlugins.js
@@ -1218,12 +1218,14 @@ export let corePlugins = {
1218
1219
justifyContent: ({ addUtilities }) => {
1220
addUtilities({
1221
+ '.justify-normal': { 'justify-content': 'normal' },
1222
'.justify-start': { 'justify-content': 'flex-start' },
1223
'.justify-end': { 'justify-content': 'flex-end' },
1224
'.justify-center': { 'justify-content': 'center' },
1225
'.justify-between': { 'justify-content': 'space-between' },
1226
'.justify-around': { 'justify-content': 'space-around' },
1227
'.justify-evenly': { 'justify-content': 'space-evenly' },
1228
+ '.justify-stretch': { 'justify-content': 'stretch' },
1229
})
1230
},
1231
0 commit comments