@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
24 lines (23 loc) • 579 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
// ========================= Placeholder ==========================
const genEmptyStyle = token => {
const {
componentCls
} = token;
return {
[`${componentCls}-wrapper`]: {
[`${componentCls}-tbody > tr${componentCls}-placeholder`]: {
textAlign: 'center',
color: token.colorTextDisabled,
'&:hover > td': {
background: token.colorBgContainer
}
}
}
};
};
var _default = exports.default = genEmptyStyle;
;