Skip to content

Commit

Permalink
fix(style): minor padding issue
Browse files Browse the repository at this point in the history
  • Loading branch information
asvae committed Dec 26, 2018
1 parent 3f1c4df commit 56aa91a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
5 changes: 1 addition & 4 deletions src/components/auth/login/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<button class="btn btn-primary" type="submit">
{{ $t('auth.login') }}
</button>
<router-link class='link' :to="{name: 'signup'}">
<router-link class='link flex-center pl-2 text-center' :to="{name: 'signup'}">
{{ $t('auth.createAccount') }}
</router-link>
</div>
Expand All @@ -47,9 +47,6 @@ export default {
padding-left: 2rem;
.down-container {
display: none;
.link {
margin-top: 2rem;
}
}
}
Expand Down
8 changes: 2 additions & 6 deletions src/components/auth/signup/Signup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
<button class="btn btn-primary" type="submit">
{{ $t('auth.signUp') }}
</button>
<router-link class='link' :to="{name: 'login'}">{{ $t('auth.alreadyJoined') }}
<router-link class='link pl-2 text-center' :to="{name: 'login'}">
{{ $t('auth.alreadyJoined') }}
</router-link>
</div>
</form>
Expand All @@ -49,11 +50,6 @@ export default {
width: 100%;
padding-right: 2rem;
padding-left: 2rem;
.down-container {
.link {
margin-top: 2rem;
}
}
}
h2 {
Expand Down

0 comments on commit 56aa91a

Please sign in to comment.