修改UI对齐

dev
陈博文 3 years ago
parent 13e9c7438e
commit cb259fee0a

@ -1,6 +1,11 @@
.page {
background-color: #fff;
padding: 40px 118px;
padding: 40px 0;
.wrap {
width: 1200px;
margin: 0 auto;
}
sup {
color: red;

@ -133,6 +133,7 @@ const Page: FC<PageProps> = ({ basic, dispatch }) => {
return (
<div className={styles.page}>
<div className={styles.wrap}>
<div className={styles.name}>
{' '}
<b /> <span></span>
@ -214,7 +215,9 @@ const Page: FC<PageProps> = ({ basic, dispatch }) => {
<div className={styles.box3}>
<Button
onClick={uploadFile}
disabled={!(file1?.file && file2?.file && file3?.file && file4?.file)}
disabled={
!(file1?.file && file2?.file && file3?.file && file4?.file)
}
type="primary"
>
@ -309,6 +312,7 @@ const Page: FC<PageProps> = ({ basic, dispatch }) => {
</Button>
</div>
</div>
);
};
export default connect(({ basic }: { basic: BasicInfoModelState }) => ({

Loading…
Cancel
Save