diff --git a/src/App.css b/src/App.css index 71d276c..c7712cd 100644 --- a/src/App.css +++ b/src/App.css @@ -3405,6 +3405,25 @@ flex-shrink: 0; } + .section-resources .resource-link { + display: flex; + flex-direction: column; + align-items: flex-start; + min-height: unset; + } + + .section-resources .resource-download-meta { + width: 100%; + } + + .section-resources .resource-link-image { + width: 100%; + height: 160px; + border-radius: 10px; + object-fit: cover; + margin-bottom: 0.25rem; + } + .resource-link-tags { margin-top: 0.15rem; color: var(--brand-gold); diff --git a/src/App.tsx b/src/App.tsx index d95044e..a5177c9 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1117,6 +1117,7 @@ function ExternalSitesSection({ content }: { content: SiteContent }) { {links.map(link => (
+ {link.imageUrl && {link.label}} {link.label} {link.description &&

{link.description}

} Open external site →