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.

35 lines
889 B

11 months ago
11 months 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. .loadingStyle{
  19. display: flex;
  20. align-items: center;
  21. justify-content: flex-start; /* 将内容左对齐 */
  22. }
  23. .loadingStyle_table{
  24. margin-left: 10px; /* 给内容和tip之间留一些间距 */
  25. color : cadetblue;
  26. }
  27. `
  28. return {
  29. container: cx(prefix, props?.className, container),
  30. }
  31. })