mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
20 lines
410 B
JavaScript
20 lines
410 B
JavaScript
const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
|
|
|
|
module.exports = createSimpleStaticUtilityPlugin({
|
|
'.place-self-auto': {
|
|
'place-self': 'auto',
|
|
},
|
|
'.place-self-start': {
|
|
'place-self': 'start',
|
|
},
|
|
'.place-self-end': {
|
|
'place-self': 'end',
|
|
},
|
|
'.place-self-center': {
|
|
'place-self': 'center',
|
|
},
|
|
'.place-self-stretch': {
|
|
'place-self': 'stretch',
|
|
},
|
|
})
|