29 lines
513 B
TypeScript
29 lines
513 B
TypeScript
import { createStyles } from 'antd-style'
|
|
|
|
export default createStyles(({ token }) => ({
|
|
root: {
|
|
padding: token.paddingLG,
|
|
gap: token.paddingLG
|
|
},
|
|
|
|
head: {
|
|
alignItems: 'center',
|
|
gap: token.sizeXXS,
|
|
color: token.colorPrimary,
|
|
|
|
'>:nth-child(n+3)': {
|
|
flex: '0 0 auto'
|
|
}
|
|
},
|
|
|
|
icon: {
|
|
fontSize: token.sizeLG,
|
|
flex: '0 0 auto'
|
|
},
|
|
|
|
title: {
|
|
display: 'flex',
|
|
fontSize: token.fontSize
|
|
}
|
|
}))
|