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