mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
25 lines
539 B
JavaScript
25 lines
539 B
JavaScript
export default function () {
|
|
return function ({ addUtilities, variants }) {
|
|
addUtilities(
|
|
{
|
|
'.place-items-auto': {
|
|
'place-items': 'auto',
|
|
},
|
|
'.place-items-start': {
|
|
'place-items': 'start',
|
|
},
|
|
'.place-items-end': {
|
|
'place-items': 'end',
|
|
},
|
|
'.place-items-center': {
|
|
'place-items': 'center',
|
|
},
|
|
'.place-items-stretch': {
|
|
'place-items': 'stretch',
|
|
},
|
|
},
|
|
variants('placeItems')
|
|
)
|
|
}
|
|
}
|