diff --git a/app/layout.tsx b/app/layout.tsx index 8c2c8ea..a871b4f 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -22,12 +22,12 @@ export default function RootLayout({ -
-

+
+

CIS 1951

-
+

CIS 1951

diff --git a/components/Card.tsx b/components/Card.tsx index c9abace..5678b5c 100644 --- a/components/Card.tsx +++ b/components/Card.tsx @@ -7,7 +7,7 @@ export type CardProps = { } export function Card({ title, children, margin = false }: CardProps) { - let className = "rounded-xl p-4 bg-neutral-50 border border-neutral-200 dark:border-neutral-700 dark:bg-neutral-800" + let className = "rounded-xl p-4 bg-neutral-50 border border-neutral-200 dark:border-neutral-700 dark:bg-neutral-800 print:p-0 print:border-0 print:bg-transparent" if (margin) className += " mb-4" return