mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
17 lines
412 B
JavaScript
17 lines
412 B
JavaScript
export default function () {
|
|
return function ({ addUtilities, variants }) {
|
|
addUtilities(
|
|
{
|
|
'.truncate': {
|
|
overflow: 'hidden',
|
|
'text-overflow': 'ellipsis',
|
|
'white-space': 'nowrap',
|
|
},
|
|
'.overflow-ellipsis': { 'text-overflow': 'ellipsis' },
|
|
'.overflow-clip': { 'text-overflow': 'clip' },
|
|
},
|
|
variants('textOverflow')
|
|
)
|
|
}
|
|
}
|