From bb11d9e559c41f23184430950a148c8412ae1700 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Mon, 27 Oct 2025 22:04:15 -0700 Subject: [PATCH] Fix horizontal wrapper on mobile --- assets/css/content.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/css/content.css b/assets/css/content.css index 1a7ee2d..7d70698 100644 --- a/assets/css/content.css +++ b/assets/css/content.css @@ -4,6 +4,7 @@ display: flex; flex-direction: row; gap: 8px; + align-items: flex-start; } .primary-action { @@ -22,3 +23,9 @@ text-decoration-line: unset; border-radius: 4px; } + +@media screen and (max-width: 768px) { + .horizontal-wrapper { + flex-direction: column; + } +}