Skip to content

Commit

Permalink
🎨
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Dec 30, 2022
1 parent 3968597 commit c631e14
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
Expand Up @@ -78,8 +78,8 @@ const inputEl = ref<HTMLElement>();
const prefixEl = ref<HTMLElement>();
const suffixEl = ref<HTMLElement>();
const height =
props.small ? 36 :
props.large ? 38 :
props.small ? 35 :
props.large ? 39 :
37;
const focus = () => inputEl.value.focus();
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/components/form/select.vue
Expand Up @@ -64,8 +64,8 @@ const prefixEl = ref(null);
const suffixEl = ref(null);
const container = ref(null);
const height =
props.small ? 36 :
props.large ? 38 :
props.small ? 35 :
props.large ? 39 :
37;
const focus = () => inputEl.value.focus();
Expand Down

0 comments on commit c631e14

Please sign in to comment.