From 6f1fd72b1307d072caec3f83868ad48404c69827 Mon Sep 17 00:00:00 2001 From: TaehunLee <85233397+Todari@users.noreply.github.com> Date: Wed, 15 Jan 2025 18:47:49 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20iOS=EC=97=90=EC=84=9C=20=EC=95=84?= =?UTF-8?q?=EC=9D=B4=EC=BD=98=EC=9D=B4=20=EC=A0=9C=EB=8C=80=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=B4=EC=9D=B4=EC=A7=80=20=EC=95=8A=EB=8D=98=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=20(#948)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: Icon component의 viewBox px 단위로 변경 * fix: Icon Component가 제대로 보이지 않던 문제 해결 --- client/src/components/Design/components/Icons/Svg.style.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/client/src/components/Design/components/Icons/Svg.style.ts b/client/src/components/Design/components/Icons/Svg.style.ts index eedb5fa19..9f773019c 100644 --- a/client/src/components/Design/components/Icons/Svg.style.ts +++ b/client/src/components/Design/components/Icons/Svg.style.ts @@ -14,8 +14,11 @@ export const svgWrapperStyle = (width?: number, height?: number, size?: number) }; export const svgStyle = css` + width: 100%; + height: 100%; + svg { - width: auto; - height: auto; + width: 100%; + height: 100%; } `;