Skip to content

Commit 3476639

Browse files
authoredFeb 6, 2024··
Merge pull request #25 from qlemaire22/fix-youtube-card-bug
Fix YouTube anchor not clickable
2 parents 32b9977 + cb8873b commit 3476639

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/components/Card.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const isStormgatenexus = data.source == "news" && data.author_url.includes("stor
3636
{
3737
data.image_url?.length && (
3838
<div
39-
class="absolute inset-0 blur-xl opacity-15 bg-center bg-cover"
39+
class="absolute inset-0 blur-xl opacity-15 bg-center bg-cover pointer-events-none"
4040
style={{ backgroundImage: `url(${data.image_url})` }}
4141
/>
4242
)

0 commit comments

Comments
 (0)
Please sign in to comment.