Allow login buttons to expand vertically - fixes #9861 (#10622)

* Allow login buttons to expand vertically

* whitespace matching
This commit is contained in:
Forrest Hatfield
2018-08-24 14:38:42 -07:00
committed by Sabe Jones
parent 862b3453f8
commit eb99b709e0
2 changed files with 5 additions and 1 deletions

View File

@@ -21,7 +21,7 @@
.col-12.col-md-6
.btn.btn-secondary.social-button(@click='socialAuth("google")')
.svg-icon.social-icon(v-html="icons.googleIcon")
span {{registering ? $t('signUpWithSocial', {social: 'Google'}) : $t('loginWithSocial', {social: 'Google'})}}
.text {{registering ? $t('signUpWithSocial', {social: 'Google'}) : $t('loginWithSocial', {social: 'Google'})}}
.form-group(v-if='registering')
label(for='usernameInput', v-once) {{$t('username')}}
input#usernameInput.form-control(type='text', :placeholder='$t("usernamePlaceholder")', v-model='username')
@@ -207,6 +207,8 @@
.social-button {
width: 100%;
height: 100%;
white-space: inherit;
text-align: center;
.text {