From 52104d68eb70644ba6f3e595685899baa3bd60ab Mon Sep 17 00:00:00 2001 From: MatejMa2ur Date: Tue, 14 May 2024 21:26:03 +0200 Subject: [PATCH] Update media query from min-width to max-width This commit updates the CSS media query screen size from a minimum width of 768px to a maximum width of 768px. This change improves the responsive design for smaller devices. --- style/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style/style.css b/style/style.css index 2c03fe9..98ab8c5 100644 --- a/style/style.css +++ b/style/style.css @@ -134,7 +134,7 @@ body { margin-top: -125px; } -@media only screen and (min-width: 768px) { +@media only screen and (max-width: 768px) { .user-image { width: 180px; margin-top: -90px;