Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const FollowingModal = ({ userId }: { userId: number }) => {
},
});
return (
<ModalContent className='mx-8'>
<ModalContent className='max-w-77.75'>
<ModalTitle className='mb-3'>팔로우 할 닉네임을 입력하세요</ModalTitle>
<form
onSubmit={(e) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export const ModalProvider = ({ children }: ModalProviderProps) => {
initial={{ opacity: 0 }}
role='dialog'
>
<div className='flex w-full max-w-110 justify-center px-4'>{content}</div>
<div className='flex w-full max-w-110 min-w-70 justify-center px-4'>{content}</div>
</m.div>
)}
</div>,
Expand Down