various improvements

This commit is contained in:
Zoe
2023-04-20 21:19:22 -05:00
parent b6d3b045aa
commit 3ea8167569
60 changed files with 12369 additions and 7625 deletions

25
components/Popup.vue Executable file
View File

@@ -0,0 +1,25 @@
<template>
<div
v-if="opened"
class="z-10 bg-[var(--primary-dark)] w-fit rounded-md shadow-md p-3"
>
<div class="max-w-[350px] max-h-[450px] overflow-hidden">
<EmojiPicker
v-if="openedBy === 'emojiPicker'"
@picked-emoji="$emit('picked-emoji', $event)"
/>
</div>
</div>
</template>
<script>
export default {
props: {
openedBy: {
type: String,
required: true
},
opened: Boolean
}
};
</script>