Skip to content

Commit

Permalink
fix: bug №101
Browse files Browse the repository at this point in the history
  • Loading branch information
smellyshovel committed Aug 6, 2019
1 parent 1dc6f44 commit c195a2f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions src/components/auth/AuthLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,11 @@ export default {
width: 100%;
max-width: 600px;
}
&__options {
@include media-breakpoint-down(xs) {
flex-direction: column;
}
}
}
</style>
2 changes: 1 addition & 1 deletion src/components/auth/login/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
:error-messages="passwordErrors"
/>

<div class="d-flex align--center justify--space-between">
<div class="auth-layout__options d-flex align--center justify--space-between">
<va-checkbox v-model="keepLoggedIn" class="mb-0" :label="$t('auth.keep_logged_in')"/>
<router-link class="ml-1 link" :to="{name: 'recover-password'}">{{$t('auth.recover_password')}}</router-link>
</div>
Expand Down
3 changes: 1 addition & 2 deletions src/components/auth/signup/Signup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
:error-messages="passwordErrors"
/>

<div class="d-flex align--center justify--space-between">
<div class="auth-layout__options d-flex align--center justify--space-between">
<va-checkbox
v-model="agreedToTerms"
class="mb-0"
Expand Down Expand Up @@ -72,5 +72,4 @@ export default {
</script>

<style lang="scss">
</style>

0 comments on commit c195a2f

Please sign in to comment.