Small fix to the CSS animation nonsense
All checks were successful
Docker Deploy / build-and-push (push) Successful in 2m41s
All checks were successful
Docker Deploy / build-and-push (push) Successful in 2m41s
This commit is contained in:
@@ -13,7 +13,12 @@ const { items } = Astro.props;
|
|||||||
<span>
|
<span>
|
||||||
{
|
{
|
||||||
items.map((item) => (
|
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}
|
{item.text}
|
||||||
</span>
|
</span>
|
||||||
))
|
))
|
||||||
|
|||||||
Reference in New Issue
Block a user