Skip to content

Commit

Permalink
fix: iOS에서 아이콘이 제대로 보이지 않던 문제 (#948)
Browse files Browse the repository at this point in the history
* fix: Icon component의 viewBox px 단위로 변경

* fix: Icon Component가 제대로 보이지 않던 문제 해결
  • Loading branch information
Todari committed Jan 15, 2025
1 parent d9b55a9 commit 6f1fd72
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions client/src/components/Design/components/Icons/Svg.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
}
`;

0 comments on commit 6f1fd72

Please sign in to comment.