From 0860000a90e6ef3c9a17f413620abfd4252b1a3d Mon Sep 17 00:00:00 2001 From: jusohn Date: Fri, 17 Nov 2023 18:32:15 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20FIX:=20=EC=9C=A0=EC=A0=80=20=EC=88=98?= =?UTF-8?q?=EC=97=90=20=EB=94=B0=EB=9D=BC=20=EB=B3=80=EA=B2=BD=EB=90=98?= =?UTF-8?q?=EB=8A=94=20=EC=9C=A0=EC=A0=80=EB=A6=AC=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EA=B8=80=EC=9E=90=20=ED=81=AC=EA=B8=B0=20=EC=88=98=EC=A0=95=20?= =?UTF-8?q?#1415?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Card/LentInfoCard/LentInfoCard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Card/LentInfoCard/LentInfoCard.tsx b/frontend/src/components/Card/LentInfoCard/LentInfoCard.tsx index f17ab4602..c93e2b730 100644 --- a/frontend/src/components/Card/LentInfoCard/LentInfoCard.tsx +++ b/frontend/src/components/Card/LentInfoCard/LentInfoCard.tsx @@ -25,8 +25,8 @@ const LentInfoCard = ({ }) => { const calculateFontSize = (userCount: number): string => { const baseSize = 1; - const decrement = 0.2; - const minSize = 0.6; + const decrement = 0.05; + const minSize = 0.8; const calculatedSize = Math.max( baseSize - (userCount - 1) * decrement, minSize