28 lines
No EOL
465 B
JavaScript
28 lines
No EOL
465 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _default;
|
|
|
|
function _default() {
|
|
return function ({
|
|
addUtilities,
|
|
variants
|
|
}) {
|
|
addUtilities({
|
|
'.resize-none': {
|
|
resize: 'none'
|
|
},
|
|
'.resize-y': {
|
|
resize: 'vertical'
|
|
},
|
|
'.resize-x': {
|
|
resize: 'horizontal'
|
|
},
|
|
'.resize': {
|
|
resize: 'both'
|
|
}
|
|
}, variants('resize'));
|
|
};
|
|
} |