From b1ddcaa8498ea390f3427e96ade35b35f544f5b8 Mon Sep 17 00:00:00 2001 From: Gerwin Kuijntjes Date: Thu, 2 Apr 2026 14:07:54 +0200 Subject: [PATCH] Make footer links vertical on mobile only Co-Authored-By: Claude Opus 4.6 (1M context) --- landing/src/components/Footer.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/landing/src/components/Footer.astro b/landing/src/components/Footer.astro index bc5c026..deb7b17 100644 --- a/landing/src/components/Footer.astro +++ b/landing/src/components/Footer.astro @@ -55,8 +55,7 @@ const PLAY_STORE_URL = "https://play.google.com/store/apps/details?id=nl.resoftw } .footer-links { display: flex; - flex-direction: column; - gap: 0.6rem; + gap: 2rem; } .footer-links a { font-size: 0.85rem; @@ -76,6 +75,7 @@ const PLAY_STORE_URL = "https://play.google.com/store/apps/details?id=nl.resoftw @media (max-width: 900px) { .footer-inner { flex-direction: column; align-items: flex-start; } + .footer-links { flex-direction: column; gap: 0.6rem; } .footer-copy { text-align: left; } }