feat: drop shadow images and reduce padding

looks a lot better
This commit is contained in:
eggy 2023-05-23 18:12:14 -04:00
parent 9e30863015
commit b96e7fed67

View File

@ -10,7 +10,7 @@ const imgSrc =
<template>
<figure class="flex flex-col items-center">
<img :src="imgSrc" />
<figcaption class="text-center"><slot /></figcaption>
<img :src="imgSrc" class="drop-shadow-lg" />
<figcaption class="text-center m-0"><slot /></figcaption>
</figure>
</template>