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
624 B

  1. import { createStyles } from '@/theme'
  2. export const useStyle = createStyles(({ token, css, cx, prefixCls }, props: any) => {
  3. const prefix = `${prefixCls}-${token?.proPrefix}-video-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. color: red;
  18. }
  19. `
  20. return {
  21. container: cx(prefix, props?.className, container),
  22. }
  23. })