Skip to content

Commit ab7ce65

Browse files
ErioldDaniel Montoya
andauthored
fix(events): se ajusta margenes para la caja, para que soporten cv (#649)
Co-authored-by: Daniel Montoya <daniel.montoya@eclass.cl>
1 parent 2925cb3 commit ab7ce65

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

src/organisms/Events/TypeBox/LargeBox.tsx

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,26 @@ export const LargeBox: FC<ItemsEventsProps> = ({
5454
<Box
5555
width="inherit"
5656
height="100%"
57-
padding="4"
57+
padding="16px"
5858
color="#555555"
5959
gap="16px"
6060
display="grid"
6161
>
62-
<Text fontWeight="700">{eventTitle}</Text>
62+
<Text fontWeight="700" m="0px" p="0px">
63+
{eventTitle}
64+
</Text>
6365
<Box display="flex" alignItems="center" gap="4px">
6466
<Calendar color={vars('colors-main-ziggurat')} />
65-
<Text fontWeight="400">{startDate}</Text>
66-
<Text color={vars('borders-light')}>|</Text>
67+
<Text fontWeight="400" m="0px" p="0px">
68+
{startDate}
69+
</Text>
70+
<Text color={vars('borders-light')} m="0px" p="0px">
71+
|
72+
</Text>
6773
<Clock color={vars('colors-main-ziggurat')} />
68-
<Text>{startTime}</Text>
74+
<Text m="0px" p="0px">
75+
{startTime}
76+
</Text>
6977
</Box>
7078
</Box>
7179
<Box

0 commit comments

Comments
 (0)