From c733c4066ae050ac330ed80aa44416ec90ced2b5 Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Sat, 1 Jul 2023 19:16:45 +0200 Subject: [PATCH] fix: fixed width profile after tablet resolution --- src/pages/profile-page.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pages/profile-page.css b/src/pages/profile-page.css index 29966a1..c7750bb 100644 --- a/src/pages/profile-page.css +++ b/src/pages/profile-page.css @@ -3,8 +3,11 @@ justify-content: center; } -.profile-page .profile-container { - max-width: 620px; + +@media (min-width: 768px) { + .profile-page .profile-container { + width: 620px; + } } .profile-page .profile-content {