From 98bef776801c5d8eff6218a43f32adb59259d5af Mon Sep 17 00:00:00 2001 From: Kaj Forney Date: Tue, 14 Feb 2023 18:13:06 -0700 Subject: [PATCH] Fix repsonsive font resizing for mobile. --- css/main.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/main.css b/css/main.css index 0cf4da9..761f867 100644 --- a/css/main.css +++ b/css/main.css @@ -273,13 +273,13 @@ iframe[src*=itch] } @media screen and (min-width: 700px) { - #social { + .section-title { font-size: 64px; } } @media screen and (max-width: 699px) { - #social { + .section-title { font-size: 45px; } }