Fix emoji legend

This commit is contained in:
taskylizard 2023-11-03 14:25:15 +05:30
parent 4c9c65d56d
commit d06f53879c
No known key found for this signature in database
GPG Key ID: 5CABA3D642DDC497
2 changed files with 8 additions and 22 deletions

View File

@ -102,6 +102,6 @@ export default defineConfig({
link: "https://reddit.com/r/FREEMEDIAHECKYEAH", link: "https://reddit.com/r/FREEMEDIAHECKYEAH",
}, },
], ],
...pwa, // ...pwa,
}, },
}); });

View File

@ -5,26 +5,12 @@ defineProps<{
</script> </script>
<template> <template>
<div class="field-body"> <div class="flex items-center mb-[8px] g-[12px]">
<div class="text-xl" :class="icon" /> <span class="flex items-center">
<!-- <p class="m-[10px 10px]"></p> --> <div class="text-2xl" :class="icon" />
<div class="text-[var(--vp-c-text-2)]"> <div class="ml-2 text-[var(--vp-c-text-2)]">
<slot /> <slot />
</div> </div>
</span>
</div> </div>
</template> </template>
<style scoped>
.field-body {
color: var(--vt-c-text-1);
display: block;
}
.field-body {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
gap: 12px;
}
</style>