From 829dff1d9f93a8ea9ef92ef9854474fa5d3d8472 Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Thu, 29 Aug 2024 15:37:52 +0300 Subject: [PATCH] fixed mobile phone --- static/css/style.css | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 19c6867..32cae5c 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -161,11 +161,22 @@ main a { } /* Small devices */ -@media only screen and (min-width : 480px) { +@media only screen and (max-width : 575px) { + body { + max-width: 100%; + } + #personal { min-width: 40px; + max-width: 150px; float: center; - padding: 10px 10px 10px 20px; + padding: 0px 0px 0px 20px; display: block; } + header { + width: 100%; + } + .content-wrapper { + padding: 40px 0px 10px 10px; + } }