Skip to content

Commit

Permalink
fix: fix login page style
Browse files Browse the repository at this point in the history
  • Loading branch information
anncwb committed Mar 1, 2021
1 parent c625462 commit 7b4fcd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/views/sys/login/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
}
@media (max-width: @screen-sm) {
min-width: 260px;
min-width: 180px;
}
}
.@{countdown-prefix-cls} input {
Expand Down
6 changes: 3 additions & 3 deletions src/views/sys/login/LoginForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@
</Button> -->
</FormItem>
<ARow class="enter-x">
<ACol :span="7">
<ACol :xs="24" :md="8">
<Button block @click="setLoginState(LoginStateEnum.MOBILE)">
{{ t('sys.login.mobileSignInFormTitle') }}
</Button>
</ACol>
<ACol :span="8" :offset="1">
<ACol :md="8" :xs="24" class="xs:my-2 md:my-0 xs:mx-0 md:mx-2">
<Button block @click="setLoginState(LoginStateEnum.QR_CODE)">
{{ t('sys.login.qrSignInFormTitle') }}
</Button>
</ACol>
<ACol :span="7" :offset="1">
<ACol :md="7" :xs="24">
<Button block @click="setLoginState(LoginStateEnum.REGISTER)">
{{ t('sys.login.registerButton') }}
</Button>
Expand Down

0 comments on commit 7b4fcd2

Please sign in to comment.