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/Rules.css | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'frontend/src/css/Rules.css') diff --git a/frontend/src/css/Rules.css b/frontend/src/css/Rules.css index b7807cf..b066f02 100644 --- a/frontend/src/css/Rules.css +++ b/frontend/src/css/Rules.css @@ -2,6 +2,12 @@ main { font-size: 24px; } +@media screen and (min-width: 769px) and (max-width: 1024px) { + main { + font-size: 22px; + } +} + @media screen and (max-width: 768px) { main { font-size: 18px; -- cgit v1.2.3