diff --git a/apps/web/src/components/notebook-header.tsx b/apps/web/src/components/notebook-header.tsx index 4b826cbcd..0ed11ccba 100644 --- a/apps/web/src/components/notebook-header.tsx +++ b/apps/web/src/components/notebook-header.tsx @@ -78,12 +78,26 @@ export function NotebookHeader(props: { sx={{ flexDirection: "column", p: 1, - pb: 4, + gap: "7px", bg: "var(--background-secondary)", borderBottom: "1px solid var(--border)" }} > + + + {title} + + {description && {description}} {getFormattedDate(dateEdited, "date")} @@ -120,18 +134,6 @@ export function NotebookHeader(props: { - - {title} - - {description && ( - - {description} - - )} ); }