Skip to content

Commit

Permalink
fixes #837 (#907)
Browse files Browse the repository at this point in the history
* fixes #837

* update
  • Loading branch information
bassemmagdy authored Jan 18, 2021
1 parent 7de9fb6 commit 7f6bee2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/views/forms/FormGeneralSettings/FormGeneralSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@

<div class="form-row form-submit">
<button
class="button-style inverted-button pl-2 pr-2"
class="button-style inverted-button pl-2 pr-2 confirm-reset"
type="submit"
:disabled="isConfirmButtonDisabled"
@click="handleSubmit(onSubmit)"
>
{{ $t('confirm') }}
</button>
<button class="button-style button danger-button pl-2 pr-2" type="reset" @click.prevent="resetForm">
<button class="button-style button danger-button pl-2 pr-2 confirm-reset" type="reset" @click.prevent="resetForm">
{{ $t('reset') }}
</button>
<div style="width: 100%; text-align: left; margin-left: 0.7rem;">
Expand Down Expand Up @@ -98,6 +98,9 @@ export default class FormGeneralSettings extends FormGeneralSettingsTs {}
margin-right: 35px;
}
}
.confirm-reset {
width: 20%;
}
/deep/ .form-row {
.form-row-inner-container {
Expand Down

0 comments on commit 7f6bee2

Please sign in to comment.