Skip to content

Commit

Permalink
fix: FixedButton loading button layout 깨지는 오류 수정 (#624)
Browse files Browse the repository at this point in the history
  • Loading branch information
Todari authored Sep 26, 2024
1 parent 67532d8 commit 7fe6b20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const FixedButton: React.FC<FixedButtonProps> = forwardRef<HTMLButtonElem
{...htmlProps}
>
{variants === 'loading' ? (
<Lottie animationData={loadingAnimation} loop={true} style={{width: 240, height: 20}} />
<Lottie animationData={loadingAnimation} loop={true} style={{height: '1.25rem'}} />
) : (
children
)}
Expand Down

0 comments on commit 7fe6b20

Please sign in to comment.