From 4ad4fbf886c93dc66b12f4a05e7fc11fbb3fc41b Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Sun, 17 Aug 2025 16:08:04 -0400 Subject: [PATCH] Hide icons on mobile --- src/styles/index.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/styles/index.css b/src/styles/index.css index a93fe67..1e0d60d 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -56,15 +56,18 @@ main > * > section { color: hsl(0, 0%, 60%); } & h3 { - font-size: 2em; + font-size: 1.85em; + align-items: center; font-weight: normal; margin: 0.3em 0; display: flex; - align-items: center; gap: 0.7rem; & img { width: 2.5rem; + @media (max-width: 450px) { + display: none; + } } } & p { @@ -98,8 +101,4 @@ main > * > section { min-width: 300px; } } - - @media (max-width: 1500px) { - scroll-margin-top: 5em; - } }