mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
export default function() {
|
|
return function({ addUtilities, config }) {
|
|
addUtilities(
|
|
{
|
|
'.underline': { 'text-decoration': 'underline' },
|
|
'.line-through': { 'text-decoration': 'line-through' },
|
|
'.no-underline': { 'text-decoration': 'none' },
|
|
},
|
|
config('variants.textDecoration')
|
|
)
|
|
}
|
|
}
|