Skip to content

Commit 26274ef

Browse files
committed
refactor: update dashboard card to use full width layout
1 parent 8bf1965 commit 26274ef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/dashboard-card/dashboard-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export function DashboardCard(props: DashboardCardProps) {
88
const { header, link, metric } = props;
99

1010
return (
11-
<a className="flex max-w-72" target="_blank" rel="noopener" href={link} aria-label={header}>
11+
<a className="flex w-full" target="_blank" rel="noopener" href={link} aria-label={header}>
1212
<div className="w-full rounded-lg border border-gray-200 bg-white p-4 dark:border-gray-800 dark:bg-gray-900">
1313
<div className="flex items-center text-gray-900 dark:text-gray-100">
1414
{header}

0 commit comments

Comments
 (0)