diff --git a/apps/client/src/widgets/react/Card.css b/apps/client/src/widgets/react/Card.css index ce6bf6dc61..5bbe0f6ab4 100644 --- a/apps/client/src/widgets/react/Card.css +++ b/apps/client/src/widgets/react/Card.css @@ -6,6 +6,14 @@ --card-nested-section-indent: 30px; } +.tn-card-heading { + margin-bottom: 10px; + font-size: .75rem; + font-weight: 600; + letter-spacing: .4pt; + text-transform: uppercase; +} + .tn-card { display: flex; flex-direction: column; diff --git a/apps/client/src/widgets/react/Card.tsx b/apps/client/src/widgets/react/Card.tsx index 7296433bf7..3a805ff731 100644 --- a/apps/client/src/widgets/react/Card.tsx +++ b/apps/client/src/widgets/react/Card.tsx @@ -6,12 +6,16 @@ import clsx from "clsx"; interface CardProps { className?: string; + heading?: string; } export function Card(props: {children: ComponentChildren} & CardProps) { - return