Skip to content

Commit

Permalink
🎨
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Dec 29, 2022
1 parent d031f64 commit 666c9be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/components/form/input.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ const prefixEl = ref<HTMLElement>();
const suffixEl = ref<HTMLElement>();
const height =
props.small ? 36 :
props.large ? 40 :
38;
props.large ? 38 :
37;
const focus = () => inputEl.value.focus();
const onInput = (ev: KeyboardEvent) => {
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/components/form/select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ const suffixEl = ref(null);
const container = ref(null);
const height =
props.small ? 36 :
props.large ? 40 :
38;
props.large ? 38 :
37;
const focus = () => inputEl.value.focus();
const onInput = (ev) => {
Expand Down

0 comments on commit 666c9be

Please sign in to comment.