Skip to content

Commit

Permalink
fix: 修复登录表单手机模式兼容
Browse files Browse the repository at this point in the history
  • Loading branch information
79E committed May 29, 2023
1 parent 66971bf commit aa2f860
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/LoginModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ export function LoginCard(props: {
</Space>
)}
contentStyle={{
width: 'auto',
minWidth: '341px'
width: '100%',
maxWidth: '340px',
minWidth: '100px'
}}
onFinish={async (e) => {
return new Promise((resolve, reject) => {
Expand Down

0 comments on commit aa2f860

Please sign in to comment.