Skip to content

Commit 680dbb7

Browse files
authored
fix event featured image max width (#430)
* fix event featured image max width
1 parent 197b6d0 commit 680dbb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/layouts/EventLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const relatedEvents =
4646
{
4747
entry.data.featuredImage && entry.data.featuredImageAlt && (
4848
<Image
49-
class="max-w-[750px]"
49+
containerClass="relative h-fit w-fit max-w-[750px]"
5050
src={entry.data.featuredImage}
5151
alt={entry.data.featuredImageAlt}
5252
/>

0 commit comments

Comments
 (0)