28 lines
535 B
JavaScript
28 lines
535 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = _default;
|
||
|
|
||
|
function _default() {
|
||
|
return function ({
|
||
|
addUtilities,
|
||
|
variants
|
||
|
}) {
|
||
|
addUtilities({
|
||
|
'.flex-row': {
|
||
|
'flex-direction': 'row'
|
||
|
},
|
||
|
'.flex-row-reverse': {
|
||
|
'flex-direction': 'row-reverse'
|
||
|
},
|
||
|
'.flex-col': {
|
||
|
'flex-direction': 'column'
|
||
|
},
|
||
|
'.flex-col-reverse': {
|
||
|
'flex-direction': 'column-reverse'
|
||
|
}
|
||
|
}, variants('flexDirection'));
|
||
|
};
|
||
|
}
|