summaryrefslogtreecommitdiff
path: root/src/components/GifButtons.astro
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-03-12 20:08:01 -0400
committerSeth Flynn <[email protected]>2025-03-12 20:26:38 -0400
commit898f1b95c7200a321eb686738e06283fc224959a (patch)
tree9249459856535e29d17d563a608b09ccf2344d02 /src/components/GifButtons.astro
parente418edcd965f3a74522adc37b6cc3db11d0ce8f7 (diff)
feat: use tailwind and daisyui
Diffstat (limited to 'src/components/GifButtons.astro')
-rw-r--r--src/components/GifButtons.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/GifButtons.astro b/src/components/GifButtons.astro
index 3c88dbd..0fc76e3 100644
--- a/src/components/GifButtons.astro
+++ b/src/components/GifButtons.astro
@@ -38,7 +38,7 @@ const gifButtons = [
];
---
-<div class="gif-buttons">
+<div class="flex flex-row flex-wrap items-center justify-center not-prose">
{
gifButtons.map(({ buttonName, altText, link }) => {
const imageTag = (
@@ -49,7 +49,7 @@ const gifButtons = [
);
return (
- <div class="gif-button">
+ <div class="p-1">
{link ? <a href={link}>{imageTag}</a> : imageTag}
</div>
);