Skip to content

Commit ecb5427

Browse files
fix(alert): quito margin a elemento p
1 parent 63c543c commit ecb5427

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/organisms/Alerts/Alert.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,14 @@ export function Alert({
9595
</Box>
9696
<Box display="flex" alignItems="center">
9797
<Box
98-
as="p"
9998
alignSelf="center"
99+
as="p"
100+
color={vars('colors-neutral-darkCharcoal')}
100101
fontFamily="Roboto"
101102
fontSize="16px"
102103
fontWeight="400"
103104
lineHeight="28px"
104-
color={vars('colors-neutral-darkCharcoal')}
105+
mb="0"
105106
>
106107
{children}
107108
{endTextLink && onClickLink && <BtnLink onClick={onClickLink}>{endTextLink}</BtnLink>}

0 commit comments

Comments
 (0)