From b1fd0cdeff287e4cf0ec180ff9fee804cb2c8b8d Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Wed, 22 Oct 2025 01:52:05 +0400 Subject: feat/frontend: add general mobile support (#275) --- frontend/src/css/About.css | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'frontend/src/css/About.css') diff --git a/frontend/src/css/About.css b/frontend/src/css/About.css index d4fdf07..c29e0bc 100644 --- a/frontend/src/css/About.css +++ b/frontend/src/css/About.css @@ -3,7 +3,7 @@ overflow-x: hidden; position: relative; - width: calc(100% - 380px); + width: calc(100% - 380px); height: 100vh; left: 350px; @@ -16,10 +16,27 @@ } h1 { - font-size: 80px; + font-size: 80px; } h2 { - font-size: 60px; + font-size: 60px; } +@media screen and (max-width: 768px) { + #about { + width: 100%; + left: 0; + padding: 70px 20px 20px 20px; + height: calc(100vh - 60px); + font-size: 18px; + } + + h1 { + font-size: 48px; + } + + h2 { + font-size: 36px; + } +} \ No newline at end of file -- cgit v1.2.3