Skip to content

Commit

Permalink
fix: modal style
Browse files Browse the repository at this point in the history
  • Loading branch information
snurfer0 committed Dec 9, 2023
1 parent 29a6804 commit 368c438
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/molecules/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ const Modal = forwardRef<HTMLDialogElement, Props>(
</button>
</form>
{title && <h3 className="font-bold text-lg">{title}</h3>}
{title && <h3 className="font-bold text-lg mb-4">{title}</h3>}
{description && <div className="py-4">{description}</div>}
<div className="py-4">{children}</div>
<div>{children}</div>
<div className="modal-action">{actions}</div>
</div>
<form method="dialog" className="modal-backdrop">
Expand Down

0 comments on commit 368c438

Please sign in to comment.