Skip to content

Commit

Permalink
fix: style
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernest committed May 2, 2021
1 parent 8e6aee1 commit 03de974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ const VueSelect = {
const header = ref()
const headerHeight = useHeight(header, () => props.modelValue)
const inputHeight = computed(() => (props.searchable && props.multiple && props.taggable ? '22px' : '0px'))
const inputHeight = computed(() => (props.searchable && props.multiple && props.taggable ? '26px' : '0px'))
const headerAndInputHeight = computed(() => parseFloat(headerHeight.value) + parseFloat(inputHeight.value) + 'px')
// input
Expand Down

0 comments on commit 03de974

Please sign in to comment.