Skip to content

Commit

Permalink
fix(material): input emoji to bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
Novout committed May 29, 2023
1 parent d207caa commit 98f5514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/components/material/InputEmoji.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<button v-if="!props.modelValue" class="flex cursor-pointer items-center justify-center" @click="toggle(true)">
<slot />
</button>
<div v-if="value" class="flex relative left-10 bottom-50 items-center p-2 flex-col bg-theme-background-3 wb-text">
<div v-if="value" class="flex relative left-10 items-center p-2 flex-col bg-theme-background-3 wb-text">
<button class="bg-theme-background-2 hover:bg-theme-background-4 transition-colors cursor-pointer rounded shadow p-2 font-raleway text-sm cursor-pointer" @click.prevent.stop="onImage">{{ t('editor.schemas.icon.import') }}</button>
<p class="my-2">{{ t('editor.schemas.icon.or') }}</p>
<EmojiPicker :native="true" :disable-sticky-group-names="true" :hide-search="true" :disable-skin-tones="true" :hide-group-names="true" :hide-group-items="true" :display-recent="false" @select="onEmoji" />
Expand Down

0 comments on commit 98f5514

Please sign in to comment.