From c4271d57960a902101df409349a42c1f8546fd65 Mon Sep 17 00:00:00 2001 From: Shem Date: Mon, 1 Apr 2024 13:04:57 +0000 Subject: [PATCH 1/2] fix mobile --- frontend/src/custom.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/custom.scss b/frontend/src/custom.scss index 0b4d757..d76df8d 100644 --- a/frontend/src/custom.scss +++ b/frontend/src/custom.scss @@ -56,6 +56,6 @@ body { -webkit-box-orient: vertical; } -.user-info { - min-width: 800px; +.user-ino { + min-width: 80px; } From c9f518536b5e15dbf0d20cdc6c549a2a5a9ed277 Mon Sep 17 00:00:00 2001 From: Shem Date: Mon, 1 Apr 2024 13:08:18 +0000 Subject: [PATCH 2/2] use media query --- frontend/src/custom.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/custom.scss b/frontend/src/custom.scss index d76df8d..c9d9d63 100644 --- a/frontend/src/custom.scss +++ b/frontend/src/custom.scss @@ -57,5 +57,8 @@ body { } .user-ino { - min-width: 80px; + min-width: 800px; + @media only screen and (max-width: 768px) { + min-width: 80px; + } }