mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
31 lines
587 B
JavaScript
31 lines
587 B
JavaScript
export default function({ variants }) {
|
|
return function({ addUtilities }) {
|
|
addUtilities(
|
|
{
|
|
'.block': {
|
|
display: 'block',
|
|
},
|
|
'.inline-block': {
|
|
display: 'inline-block',
|
|
},
|
|
'.inline': {
|
|
display: 'inline',
|
|
},
|
|
'.table': {
|
|
display: 'table',
|
|
},
|
|
'.table-row': {
|
|
display: 'table-row',
|
|
},
|
|
'.table-cell': {
|
|
display: 'table-cell',
|
|
},
|
|
'.hidden': {
|
|
display: 'none',
|
|
},
|
|
},
|
|
variants
|
|
)
|
|
}
|
|
}
|