tailwindcss/jit/corePlugins/justifyItems.js
Adam Wathan 9e705dbb99 Remove justify-auto and place-items-auto
These CSS values don't even exist.
2021-04-03 06:41:44 -04:00

17 lines
379 B
JavaScript

const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
module.exports = createSimpleStaticUtilityPlugin({
'.justify-items-start': {
'justify-items': 'start',
},
'.justify-items-end': {
'justify-items': 'end',
},
'.justify-items-center': {
'justify-items': 'center',
},
'.justify-items-stretch': {
'justify-items': 'stretch',
},
})