diff --git a/src/components/Result/index.less b/src/components/Result/index.less index 9953392c0166c0ac641215c27c9664c5fb44aa3d..5cd2aff589606f5684fd1c8aeff6540ee81b8b6c 100644 --- a/src/components/Result/index.less +++ b/src/components/Result/index.less @@ -4,6 +4,9 @@ text-align: center; width: 72%; margin: 0 auto; + @media screen and (max-width: @screen-xs) { + width: 100%; + } .icon { font-size: 72px; @@ -39,6 +42,10 @@ padding: 24px 40px; border-radius: @border-radius-sm; text-align: left; + + @media screen and (max-width: @screen-xs) { + padding: 18px 20px; + } } .actions { diff --git a/src/routes/Forms/StepForm/Step3.js b/src/routes/Forms/StepForm/Step3.js index 08fc5d90f99f4ca9157430c06df76b9d069fb459..9a8d6d46cc92a7aa57881a1c9f83511c35b24560 100644 --- a/src/routes/Forms/StepForm/Step3.js +++ b/src/routes/Forms/StepForm/Step3.js @@ -14,28 +14,34 @@ class Step3 extends React.PureComponent { const information = (
- + 付款账户: - {data.payAccount} + + {data.payAccount} + - + 收款账户: - {data.receiverAccount} + + {data.receiverAccount} + - + 收款人姓名: - {data.receiverName} + + {data.receiverName} + - + 转账金额: - + {data.amount} diff --git a/src/routes/Forms/StepForm/style.less b/src/routes/Forms/StepForm/style.less index 6dbbd629c2efc97bd4570d528d3b0e4285948446..713dd54c5ba3fbc58f50f77cffbedd2b30a361c9 100644 --- a/src/routes/Forms/StepForm/style.less +++ b/src/routes/Forms/StepForm/style.less @@ -60,6 +60,9 @@ color: @heading-color; text-align: right; padding-right: 8px; + @media screen and (max-width: @screen-sm) { + text-align: left; + } } } diff --git a/src/routes/User/Login.less b/src/routes/User/Login.less index c34ab3d824ccefcede1546afda41f82ee1a14bdb..14a99ff11664d32aec1411154ec735ead61aae04 100644 --- a/src/routes/User/Login.less +++ b/src/routes/User/Login.less @@ -3,6 +3,9 @@ .main { width: 368px; margin: 0 auto; + @media screen and (max-width: @screen-sm) { + width: 95%; + } .icon { font-size: 24px;