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.

22 lines
506 B

  1. import { createStyles } from '@/theme'
  2. export const useStyle = createStyles(({ token, css, cx, prefixCls }, props: any) => {
  3. const prefix = `${prefixCls}-${token?.proPrefix}-ca-detail-page`
  4. const container = css`
  5. `
  6. const content = css`
  7. padding: 20px 0;
  8. .ant-descriptions-item-label{
  9. font-weight: bold;
  10. width: 50%;
  11. }
  12. `
  13. return {
  14. container: cx(prefix, props?.className, container),
  15. content,
  16. }
  17. })