fix: alignment of icon and title in ConfirmationDialogContent (#9868)

* Fix alignment of icon and title in ConfirmationDialogContent

* Update packages/ui/components/dialog/ConfirmationDialogContent.tsx

---------

Co-authored-by: Peer Richelsen <peer@cal.com>
This commit is contained in:
Ujwal Kumar
2023-07-01 21:47:57 +00:00
committed by GitHub
co-authored by Peer Richelsen
parent 4bea5a09c6
commit 8436025ff5
@@ -57,7 +57,9 @@ export function ConfirmationDialogContent(props: PropsWithChildren<ConfirmationD
</div>
)}
<div>
<DialogPrimitive.Title className="font-cal text-emphasis text-xl">{title}</DialogPrimitive.Title>
<DialogPrimitive.Title className="font-cal text-emphasis mt-2 text-xl">
{title}
</DialogPrimitive.Title>
<DialogPrimitive.Description className="text-subtle text-sm">
{children}
</DialogPrimitive.Description>