mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
26 lines
594 B
JavaScript
26 lines
594 B
JavaScript
const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
|
|
|
|
module.exports = createSimpleStaticUtilityPlugin({
|
|
'.place-content-center': {
|
|
'place-content': 'center',
|
|
},
|
|
'.place-content-start': {
|
|
'place-content': 'start',
|
|
},
|
|
'.place-content-end': {
|
|
'place-content': 'end',
|
|
},
|
|
'.place-content-between': {
|
|
'place-content': 'space-between',
|
|
},
|
|
'.place-content-around': {
|
|
'place-content': 'space-around',
|
|
},
|
|
'.place-content-evenly': {
|
|
'place-content': 'space-evenly',
|
|
},
|
|
'.place-content-stretch': {
|
|
'place-content': 'stretch',
|
|
},
|
|
})
|