Skip to content

Commit

Permalink
fix: FixedButton loading button layout 깨지는 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Todari committed Sep 25, 2024
1 parent 6afae59 commit b1b3dcf
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 b1b3dcf

Please sign in to comment.