mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
16 lines
404 B
JavaScript
16 lines
404 B
JavaScript
const { createSimpleStaticUtilityPlugin } = require('../pluginUtils')
|
|
|
|
module.exports = [
|
|
createSimpleStaticUtilityPlugin({
|
|
'.truncate': {
|
|
overflow: 'hidden',
|
|
'text-overflow': 'ellipsis',
|
|
'white-space': 'nowrap',
|
|
},
|
|
}),
|
|
createSimpleStaticUtilityPlugin({
|
|
'.overflow-ellipsis': { 'text-overflow': 'ellipsis' },
|
|
'.overflow-clip': { 'text-overflow': 'clip' },
|
|
}),
|
|
]
|