36 lines
626 B
TypeScript
36 lines
626 B
TypeScript
import { createStyles } from 'antd-style'
|
|
|
|
export default createStyles(({ token }) => ({
|
|
title: {
|
|
marginBottom: token.marginMD,
|
|
transform: `translateY(-${token.sizeSM}px)`
|
|
},
|
|
|
|
primary: {
|
|
fontSize: token.fontSizeHeading3,
|
|
fontWeight: 'bolder',
|
|
color: token.colorPrimary
|
|
},
|
|
|
|
secondary: {
|
|
fontSize: token.fontSize
|
|
},
|
|
|
|
form: {
|
|
width: 300,
|
|
fontSize: token.fontSize
|
|
},
|
|
|
|
retry: {
|
|
marginBottom: token.margin
|
|
},
|
|
|
|
success: {
|
|
marginBottom: token.margin
|
|
},
|
|
|
|
footer: {
|
|
textAlign: 'center'
|
|
}
|
|
}))
|