ant-design-x-vue-next
Version:
Ant Design X for Vue — community continuation aligned with @ant-design/x
22 lines (21 loc) • 368 B
JavaScript
const n = (e) => {
const { componentCls: t } = e;
return {
[t]: {
"&-divider": {
width: "100%",
justifyContent: "center",
[`& ${t}-content-wrapper`]: {
width: "100%"
},
[`& ${t}-content`]: {
width: "100%"
}
}
}
};
};
export {
n as default,
n as genDividerBubbleStyle
};