From 012a7c8799ecb28ae2ac798c6fbee954135d1350 Mon Sep 17 00:00:00 2001 From: Daniel Vinci Date: Fri, 30 Apr 2021 12:38:44 -0600 Subject: [PATCH] more mobile padding tweaks --- src/routes/index.svelte | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/routes/index.svelte b/src/routes/index.svelte index 98cfc1a..37b68d4 100644 --- a/src/routes/index.svelte +++ b/src/routes/index.svelte @@ -34,9 +34,14 @@ } @media only screen and (max-device-width: 900px) and (orientation: portrait) { + .hero { + margin-top: 1em; + margin-bottom: 1em; + } + .hero .container { grid-template-columns: auto; - grid-template-rows: 400px auto; + grid-template-rows: 200px auto; } }