From 4fddd863892d18f63680edc2900dbe47152bdf79 Mon Sep 17 00:00:00 2001 From: Daniel Ventura Date: Sun, 10 Nov 2024 12:51:19 -0800 Subject: [PATCH] Fixes Copy and QR Code buttons in desktop views (#389) * fix sizing on buttons: copy button would resize and qr code out of bounds of button * fix sizing on buttons: copy button would resize and qr code out of bounds of button --- client/src/components/LinkDisplay/Style.module.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/LinkDisplay/Style.module.css b/client/src/components/LinkDisplay/Style.module.css index 247bfcc..2678dc6 100644 --- a/client/src/components/LinkDisplay/Style.module.css +++ b/client/src/components/LinkDisplay/Style.module.css @@ -189,11 +189,11 @@ } .copyButton { - width: 100px; + width: 125px; } .qrButton { - width: 100px; + width: 125px; transform: none; }