From 644e6d071cdebd54898a41b73b576a9ee0700e43 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 9 Nov 2025 17:25:39 -0500 Subject: [PATCH] fix(ui): fix mobile view --- src/components/Header.astro | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index 8d9b177..789d462 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -31,11 +31,16 @@ const promptText = topic ? `barrett@ruth:~$ ${topic}` : "barrett@ruth:~$"; } @media (max-width: 768px) { header { - flex-direction: column; - align-items: flex-start; + flex-direction: row; + flex-wrap: wrap; + gap: 10px; + } + .terminal-container { + flex: 1 1 auto; + min-width: 0; } #theme-toggle { - align-self: flex-end; + flex: 0 0 auto; } }