forked from rDrama/rDrama
1
0
Fork 0
rDrama/node_modules/tailwindcss/lib/plugins/textDecoration.js

25 lines
464 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _default;
function _default() {
return function ({
addUtilities,
variants
}) {
addUtilities({
'.underline': {
'text-decoration': 'underline'
},
'.line-through': {
'text-decoration': 'line-through'
},
'.no-underline': {
'text-decoration': 'none'
}
}, variants('textDecoration'));
};
}