diff --git a/src/corePlugins.js b/src/corePlugins.js index e440eff8eafe..48f215cbd8b5 100644 --- a/src/corePlugins.js +++ b/src/corePlugins.js @@ -1218,12 +1218,14 @@ export let corePlugins = { justifyContent: ({ addUtilities }) => { addUtilities({ + '.justify-normal': { 'justify-content': 'normal' }, '.justify-start': { 'justify-content': 'flex-start' }, '.justify-end': { 'justify-content': 'flex-end' }, '.justify-center': { 'justify-content': 'center' }, '.justify-between': { 'justify-content': 'space-between' }, '.justify-around': { 'justify-content': 'space-around' }, '.justify-evenly': { 'justify-content': 'space-evenly' }, + '.justify-stretch': { 'justify-content': 'stretch' }, }) },