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.
26 lines
503 B
26 lines
503 B
import { createStyles } from 'antd-style';
|
|
|
|
const useStyles = createStyles(() => {
|
|
return {
|
|
registerResult: {
|
|
width: '800px',
|
|
minHeight: '400px',
|
|
margin: 'auto',
|
|
padding: '80px',
|
|
background: 'none',
|
|
},
|
|
anticon: {
|
|
fontSize: '64px',
|
|
},
|
|
title: {
|
|
marginTop: '32px',
|
|
fontSize: '20px',
|
|
lineHeight: '28px',
|
|
},
|
|
actions: {
|
|
marginTop: '40px',
|
|
'a + a': { marginLeft: '8px' },
|
|
},
|
|
};
|
|
});
|
|
export default useStyles;
|
|
|