From 4dcf67d01d237731502e94aab5c8fd4130e2871c Mon Sep 17 00:00:00 2001 From: prattsss Date: Sun, 1 Oct 2023 23:34:09 +0530 Subject: [PATCH] fix:responsiveness below 300px --- website/src/css/custom.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/website/src/css/custom.css b/website/src/css/custom.css index 55785110..31d65253 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -57,3 +57,17 @@ main details:hover { grid-template-columns: 1fr 1fr; } } +@media (max-width: 300px) { + .hero__title { + font-size: 24px; + } + + .hero__subtitle { + font-size: 16px; + } + + .button { + font-size: 14px; + padding: 10px 16px; + } +} \ No newline at end of file