You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
613 B

1 year ago
  1. import { createStyles } from '@/theme'
  2. export const useStyle = createStyles(({ token, css, cx, prefixCls }, props: any) => {
  3. const prefix = `${prefixCls}-${token?.proPrefix}-websiteDomain-list-page`
  4. const container = css`
  5. .ant-table-cell{
  6. .ant-tag{
  7. padding-inline: 3px;
  8. margin-inline-end: 3px;
  9. }
  10. }
  11. .ant-table-empty {
  12. .ant-table-body{
  13. height: calc(100vh - 350px)
  14. }
  15. }
  16. .ant-pro-table-highlight{
  17. }
  18. `
  19. return {
  20. container: cx(prefix, props?.className, container),
  21. }
  22. })