From bf34f6f6dda2ef77c959f173cb1568fda81929b4 Mon Sep 17 00:00:00 2001 From: easylogic Date: Wed, 5 Oct 2022 00:05:30 +0900 Subject: [PATCH] update @media query --- src/pages/index.astro | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/pages/index.astro b/src/pages/index.astro index ce9fb1d..997c719 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -96,4 +96,32 @@ import Layout from '../layouts/Layout.astro'; text-decoration: none; margin: 0 20px; } + + @media (max-width: 400px) { + .instructions { + font-size: 1.5rem; + } + + .community { + bottom: 50px; + } + + .community a { + margin: 0 10px; + } + } + + @media (max-width: 600px) { + .instructions { + font-size: 1.5rem; + } + + .community { + bottom: 50px; + } + + .community a { + margin: 0 10px; + } + }