emoji picker fix

This commit is contained in:
ThatOneCalculator 2022-11-06 20:01:45 -08:00
parent 4a08da1292
commit 33c9a77984
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "calckey", "name": "calckey",
"version": "12.119.0-calc.8-b.7", "version": "12.119.0-calc.8-b.8",
"codename": "aqua", "codename": "aqua",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -1,5 +1,5 @@
<template> <template>
<MkWindow ref="window" <MkModal ref="window"
:initial-width="null" :initial-width="null"
:initial-height="null" :initial-height="null"
:can-resize="false" :can-resize="false"
@ -8,12 +8,12 @@
@closed="emit('closed')" @closed="emit('closed')"
> >
<MkEmojiPicker :show-pinned="showPinned" :as-reaction-picker="asReactionPicker" @chosen="chosen"/> <MkEmojiPicker :show-pinned="showPinned" :as-reaction-picker="asReactionPicker" @chosen="chosen"/>
</MkWindow> </MkModal>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import { } from 'vue'; import { } from 'vue';
import MkWindow from '@/components/MkWindow.vue'; import MkModal from '@/components/MkModal.vue';
import MkEmojiPicker from '@/components/MkEmojiPicker.vue'; import MkEmojiPicker from '@/components/MkEmojiPicker.vue';
withDefaults(defineProps<{ withDefaults(defineProps<{

View File

@ -353,7 +353,7 @@ function more(ev: MouseEvent) {
position: relative; position: relative;
width: 32px; width: 32px;
margin-right: 8px; margin-right: 8px;
transform: translateY(-0.15em); transform: translateY(0.15em);
} }
> .indicator { > .indicator {