Skip to content

Commit

Permalink
[#564] BottomActionButton 컴포넌트 position 속성 수정 (#566)
Browse files Browse the repository at this point in the history
- fix: BottomActionButton position 변경
  • Loading branch information
hanyugeon authored May 1, 2024
1 parent 25a4993 commit 74cdb04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/v1/base/BottomActionButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ const BottomActionButton = ({
...props
}: BottomActionButtonProps) => {
return (
<div className="absolute bottom-0 left-0 z-10 w-full bg-white px-[2.0rem] py-[1.5rem]">
<footer className="fixed bottom-0 left-0 right-0 z-10 mx-auto w-full max-w-[43rem] bg-white px-[2.0rem] py-[1.5rem]">
<Button size="full" {...props}>
{children}
</Button>
</div>
</footer>
);
};

Expand Down

0 comments on commit 74cdb04

Please sign in to comment.