24 lines
496 B
JavaScript
24 lines
496 B
JavaScript
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = void 0;
|
||
|
const genSpaceCompactStyle = token => {
|
||
|
const {
|
||
|
componentCls
|
||
|
} = token;
|
||
|
return {
|
||
|
[componentCls]: {
|
||
|
'&-block': {
|
||
|
display: 'flex',
|
||
|
width: '100%'
|
||
|
},
|
||
|
'&-vertical': {
|
||
|
flexDirection: 'column'
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
};
|
||
|
// ============================== Export ==============================
|
||
|
var _default = exports.default = genSpaceCompactStyle;
|