Skip to content

Commit 470ebfd

Browse files
fix(PDYE-1379): margenes en texto del modal alert
1 parent fb4fa0c commit 470ebfd

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/organisms/Modals/ModalAlert/ModalAlert.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,18 @@ export const ModalAlertNew = ({
5959
</Box>
6060
)}
6161
{title && (
62-
<Box as="p" fontWeight="700" fontSize={isDesktop ? '20px' : '18px'} lineHeight="24px">
62+
<Box
63+
as="p"
64+
fontWeight="700"
65+
fontSize={isDesktop ? '20px' : '18px'}
66+
lineHeight="24px"
67+
mb={0}
68+
>
6369
{title}
6470
</Box>
6571
)}
6672
{description && (
67-
<Box as="p" fontSize="16px" lineHeight="24px">
73+
<Box as="p" fontSize="16px" lineHeight="24px" mb={0}>
6874
{description}
6975
</Box>
7076
)}

0 commit comments

Comments
 (0)