mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
25 lines
572 B
JavaScript
25 lines
572 B
JavaScript
export default function() {
|
|
return function({ addUtilities, config }) {
|
|
addUtilities(
|
|
{
|
|
'.justify-start': {
|
|
'justify-content': 'flex-start',
|
|
},
|
|
'.justify-end': {
|
|
'justify-content': 'flex-end',
|
|
},
|
|
'.justify-center': {
|
|
'justify-content': 'center',
|
|
},
|
|
'.justify-between': {
|
|
'justify-content': 'space-between',
|
|
},
|
|
'.justify-around': {
|
|
'justify-content': 'space-around',
|
|
},
|
|
},
|
|
config('variants.justifyContent')
|
|
)
|
|
}
|
|
}
|