mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
export default function() {
|
|
return function({ addUtilities, config }) {
|
|
addUtilities(
|
|
{
|
|
'.table-auto': { 'table-layout': 'auto' },
|
|
'.table-fixed': { 'table-layout': 'fixed' },
|
|
},
|
|
config('modules.tableLayout')
|
|
)
|
|
}
|
|
}
|