From 271792bfe71b4f95858bbad0a92e4c711839722f Mon Sep 17 00:00:00 2001 From: Asteroidus Date: Sun, 13 Oct 2024 10:56:16 +0200 Subject: [PATCH] Fix about text size for responsive --- styles/about.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/styles/about.css b/styles/about.css index 5bff134..469792f 100644 --- a/styles/about.css +++ b/styles/about.css @@ -64,14 +64,22 @@ } @media screen and (max-height: 950px) { - .about-text { + .about { + padding: 40px; + } + + .about-text { line-height: 1.5em; } } @media screen and (max-height: 900px) { + .about { + padding: 40px; + } + .about-text { - line-height: 1.35em; + line-height: 1.3em; } }