rDrama/node_modules/tailwindcss/lib/plugins/textOverflow.js
2021-12-13 22:28:32 +00:00

27 lines
No EOL
517 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _default;
function _default() {
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'));
};
}