From 6cef5f95ad0ac7b8248eb2cfcaa081a22f57cddb Mon Sep 17 00:00:00 2001 From: francy51 Date: Sun, 1 Mar 2026 19:15:29 -0500 Subject: [PATCH] Fix portfolio matrix right-edge overflow in fullscreen --- app/portfolio/page.tsx | 2 +- components/shell/app-shell.tsx | 4 ++-- components/ui/panel.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/portfolio/page.tsx b/app/portfolio/page.tsx index d044be9..d83522c 100644 --- a/app/portfolio/page.tsx +++ b/app/portfolio/page.tsx @@ -246,7 +246,7 @@ export default function PortfolioPage() { ) : holdings.length === 0 ? (

No holdings added yet.

) : ( -
+
diff --git a/components/shell/app-shell.tsx b/components/shell/app-shell.tsx index b0e85bc..ff8ecb6 100644 --- a/components/shell/app-shell.tsx +++ b/components/shell/app-shell.tsx @@ -104,7 +104,7 @@ export function AppShell({ title, subtitle, actions, children }: AppShellProps) -
+
@@ -147,7 +147,7 @@ export function AppShell({ title, subtitle, actions, children }: AppShellProps) })} -
{children}
+
{children}
diff --git a/components/ui/panel.tsx b/components/ui/panel.tsx index caf90cd..aab5e63 100644 --- a/components/ui/panel.tsx +++ b/components/ui/panel.tsx @@ -12,7 +12,7 @@ export function Panel({ title, subtitle, actions, children, className }: PanelPr return (