We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36ccc89 commit f3f498fCopy full SHA for f3f498f
src/app/(main)/resources/[category]/cards-section.tsx
@@ -30,11 +30,15 @@ export function CardsSection({
30
<div className="flex flex-col gap-3">
31
<Eyebrow>{sectionKindNames[section.kind]}</Eyebrow>
32
<h2 className="typography-h3 text-pretty">{heading}</h2>
33
- {text && <p className="typography-body-md text-neu-800">{text}</p>}
+ {text && (
34
+ <p className="typography-body-md max-w-[700px] text-neu-800">
35
+ {text}
36
+ </p>
37
+ )}
38
</div>
39
{section.kind === "video" ? (
40
<Button href="/resources/video" variant="primary" size="md">
- Go to full Video Resources Library
41
+ Go to Video Resources Library
42
</Button>
43
) : (
44
<span className="typography-menu text-neu-600">
0 commit comments