From 50e949caeb729ee49f71dfc0d5f0558bef0761dc Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Wed, 15 Oct 2025 07:57:09 -0400 Subject: [PATCH] Stack navigation links vertically on mobile --- software/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/software/index.html b/software/index.html index a0eee02..b12dd22 100644 --- a/software/index.html +++ b/software/index.html @@ -33,6 +33,14 @@ height: auto; display: block; } + @media (max-width: 768px) { + article nav ul { + flex-direction: column; + } + article nav ul li { + width: 100%; + } + }