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/App.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'frontend/src/App.css') diff --git a/frontend/src/App.css b/frontend/src/App.css index 8325f87..96711f9 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -94,6 +94,14 @@ body { src: local('BarlowSemiCondensed-Regular'), url(./fonts/BarlowSemiCondensed-SemiBold.ttf) format('truetype'); } +@media screen and (min-width: 769px) and (max-width: 1024px) { + main { + width: calc(100% - 20rem); + left: 19rem; + font-size: 2rem; + } +} + @media screen and (max-width: 768px) { * { box-sizing: border-box; -- cgit v1.2.3