Skip to content

Commit

Permalink
fix(Radio/Checkbox): remove legacy custom
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Jun 21, 2023
1 parent 457b7a9 commit 3bac087
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/runtime/components/forms/Checkbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
:indeterminate="indeterminate"
type="checkbox"
class="form-checkbox"
:class="[ui.base, ui.rounded, ui.custom]"
:class="[ui.base, ui.rounded]"
v-bind="$attrs"
@focus="$emit('focus', $event)"
@blur="$emit('blur', $event)"
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/components/forms/Radio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
:disabled="disabled"
type="radio"
class="form-radio"
:class="[ui.base, ui.custom]"
:class="[ui.base]"
v-bind="$attrs"
@focus="$emit('focus', $event)"
@blur="$emit('blur', $event)"
Expand Down

0 comments on commit 3bac087

Please sign in to comment.