From d2470b157f84844539c34adfaf77548069f47bd0 Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Sun, 26 Oct 2025 13:29:53 +0400 Subject: feat/frontend: tablet breakpoints (#285) --- frontend/src/css/About.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'frontend/src/css/About.css') diff --git a/frontend/src/css/About.css b/frontend/src/css/About.css index c29e0bc..07454ca 100644 --- a/frontend/src/css/About.css +++ b/frontend/src/css/About.css @@ -23,6 +23,23 @@ h2 { font-size: 60px; } +@media screen and (min-width: 769px) and (max-width: 1024px) { + #about { + width: calc(100% - 340px); + left: 310px; + padding-right: 25px; + font-size: 22px; + } + + h1 { + font-size: 68px; + } + + h2 { + font-size: 52px; + } +} + @media screen and (max-width: 768px) { #about { width: 100%; -- cgit v1.2.3