Skip to content

Commit

Permalink
fix: bottom area 속성 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
황 태환 committed Feb 27, 2024
1 parent bfafaa8 commit 8526001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/create-character/fixed-bottom-area.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type Props = {
export default function FixedBottomArea({ className, children, style }: Props) {
return (
<div
className={`fixed bottom-0 flex h-[auto] w-full flex-col items-center pt-[16px] ${className}`}
className={`fixed bottom-0 mx-auto flex h-[auto] w-full min-w-[350px] flex-col items-center items-center pt-[16px] lg:w-[400px] ${className}`}
style={style}
>
{children}
Expand Down

0 comments on commit 8526001

Please sign in to comment.