From db136116d328dbc9ddb41214bb43e9db8a9e2ede Mon Sep 17 00:00:00 2001 From: "M. Sarmad Qadeer" Date: Mon, 6 May 2024 12:31:34 +0500 Subject: [PATCH] web: make image of full width for mobile screen (#4101) --- website/src/css/blog.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/src/css/blog.css b/website/src/css/blog.css index f3517958e2..c671e6e6ce 100644 --- a/website/src/css/blog.css +++ b/website/src/css/blog.css @@ -215,4 +215,10 @@ h6{ float: right; margin-left: 3rem; } +} + +@media (max-width:768px) { + img { + width: 100%; + } } \ No newline at end of file