From 070478b1d9777eeaa0c3b9b57a715317d8c26e03 Mon Sep 17 00:00:00 2001 From: Jonathan Dahan Date: Sat, 1 Jun 2024 14:07:15 -0400 Subject: [PATCH] only have a gap for landscape mode --- style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index c1d614f..ad165f2 100644 --- a/style.css +++ b/style.css @@ -3,7 +3,10 @@ body { padding: 1em; max-width: 1280px; display: flex; - gap: 2em; + + @media(orientation: landscape) { + gap: 2em; + } } header {