From e95111cfa5dc7f5756c0b72723652e8ccaf8eecd Mon Sep 17 00:00:00 2001 From: felixindynamsoft Date: Thu, 12 Dec 2024 01:57:28 -0800 Subject: [PATCH] fix: media query for mobile --- css/index.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/css/index.css b/css/index.css index 0e92df8..f9adda5 100644 --- a/css/index.css +++ b/css/index.css @@ -561,7 +561,8 @@ img { } } -@media screen and (max-width: 800px) and (orientation: landscape) { +/* Media query for mobile phones */ +@media screen and (max-width: 926px) and (orientation: landscape) { .result-container .parsed-result-area .parsed-filed { font-size: 14px; }