import { createStyles } from '@/theme' export const useStyle = createStyles(({ token, css, cx, prefixCls }, props: any) => { const prefix = `${prefixCls}-${token?.proPrefix}-websiteDomain-list-page` const container = css` .ant-table-cell{ .ant-tag{ padding-inline: 3px; margin-inline-end: 3px; } } .ant-table-empty { .ant-table-body{ height: calc(100vh - 350px) } } .ant-pro-table-highlight{ } ` return { container: cx(prefix, props?.className, container), } })