From d2c65745c284f81e09c8a0347acaecd166130d20 Mon Sep 17 00:00:00 2001 From: Ahmed Raza <41878215+ahmedrazabaloch@users.noreply.github.com> Date: Wed, 30 Oct 2024 09:05:12 +0500 Subject: [PATCH] Fix: Adjust container responsiveness for small screens (#329) * Fix: Adjust container responsiveness for small screens --- style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/style.css b/style.css index a4256e1..8e8c0a2 100644 --- a/style.css +++ b/style.css @@ -671,3 +671,9 @@ Animating title width: 200px; } } +@media screen and (max-width: 420px) { + .container { + margin-top: 10px; + max-width: 100%; + } +}