From 76c9d1bac1b7ad73c8889a1eb0faa26909595917 Mon Sep 17 00:00:00 2001 From: Irfan Shadik Rishad Date: Wed, 5 Jun 2024 19:23:20 +0600 Subject: [PATCH] bug: responsive fix --- src/style.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/style.css b/src/style.css index 8891b7f..05f132f 100644 --- a/src/style.css +++ b/src/style.css @@ -152,16 +152,25 @@ center { } } @media screen and (max-width: 700px) { + .container { + width: 90%; + } .footer { flex-direction: column; } .footer_divider { display: none; } + .cat__body { + width: 80%; + } } @media screen and (max-width: 576px) { .cat__title { - font-size: 3rem; + font-size: 4rem; line-height: 0.9; } + .cat__body { + font-size: 1.3rem; + } }