Small fix to the CSS animation nonsense
All checks were successful
Docker Deploy / build-and-push (push) Successful in 2m41s

This commit is contained in:
2026-02-25 08:22:55 -07:00
parent a303b8be00
commit 483e80db79

View File

@@ -13,7 +13,12 @@ const { items } = Astro.props;
<span>
{
items.map((item) => (
<span class:list={["mx-auto text-center", item.className]}>
<span
class:list={[
"mx-auto text-center pointer-events-none",
item.className,
]}
>
{item.text}
</span>
))