From b9429f4131a6e4b9042fff742cc94a54f86324c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BC=9A=E9=A3=9E=E7=9A=84=E7=8C=AB?= Date: Tue, 13 Aug 2024 02:15:02 +0800 Subject: [PATCH] style: fix QR button misalignment on mobile browsers (#364) 100px width is enough on PC, but it will be misplaced on mobile phone. --- client/src/components/LinkDisplay/Style.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/LinkDisplay/Style.module.css b/client/src/components/LinkDisplay/Style.module.css index 9241615..dfbe6f2 100644 --- a/client/src/components/LinkDisplay/Style.module.css +++ b/client/src/components/LinkDisplay/Style.module.css @@ -161,7 +161,7 @@ border-width: 1px; font-family: inherit; font-size: 18px; - width: 100px; + width: 110px; height: 40px; border-radius: 5px; cursor: pointer;