diff options
| author | shpuld <shpuld@gmail.com> | 2017-03-09 02:21:23 +0200 |
|---|---|---|
| committer | shpuld <shpuld@gmail.com> | 2017-03-09 02:21:23 +0200 |
| commit | 9511691c9467e26c3237b4a2c936e8a757b3e515 (patch) | |
| tree | b6fb7a579ea5ed8eb9cb75f0b489f189d58fe743 /src | |
| parent | 0810b2d51a6f0fbbfe1604f6d1954cde8ed08290 (diff) | |
Make the error into a div instead of a button to get rid of the hover effects.
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/login_form/login_form.vue | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/components/login_form/login_form.vue b/src/components/login_form/login_form.vue index 8a32e064..b2fa5341 100644 --- a/src/components/login_form/login_form.vue +++ b/src/components/login_form/login_form.vue @@ -18,7 +18,7 @@ <button :disabled="loggingIn" type='submit' class='btn btn-default base05 base01-background'>Submit</button> </div> <div v-if="authError" class='form-group'> - <button disabled='true' class='btn btn-default base05 error'>{{authError}}</button> + <div class='error base05'>{{authError}}</div> </div> </form> </div> @@ -44,9 +44,11 @@ } .error { - margin-top: 0em; - margin-bottom: 0em; + border-radius: 5px; + text-align: center; background-color: rgba(255, 48, 16, 0.65); + min-height: 28px; + line-height: 28px; } } |
