diff options
| author | Henry Jameson <me@hjkos.com> | 2022-03-30 12:33:56 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-03-30 12:34:27 +0300 |
| commit | 19439910772ed5205edbb258b3d8a97315dde9b5 (patch) | |
| tree | 8e0b1306cd11666aa387a8d24b7f036414a7ab68 /src/components/mfa_form/totp_form.vue | |
| parent | c3690b456e66585598f05d71643089a5e9770af7 (diff) | |
make all clickable icons into actual buttons
Diffstat (limited to 'src/components/mfa_form/totp_form.vue')
| -rw-r--r-- | src/components/mfa_form/totp_form.vue | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/components/mfa_form/totp_form.vue b/src/components/mfa_form/totp_form.vue index 4ee13992..709eb9b8 100644 --- a/src/components/mfa_form/totp_form.vue +++ b/src/components/mfa_form/totp_form.vue @@ -58,12 +58,16 @@ > <div class="alert error"> {{ error }} - <FAIcon - size="lg" - class="fa-scale-110 fa-old-padding" - icon="times" + <button + class="button-unstyled" @click="clearError" - /> + > + <FAIcon + size="lg" + class="fa-scale-110 fa-old-padding" + icon="times" + /> + </button> </div> </div> </div> |
