Skip to content

Commit

Permalink
fix(events): se ajusta margenes para la caja, para que soporten cv (#649
Browse files Browse the repository at this point in the history
)

Co-authored-by: Daniel Montoya <[email protected]>
  • Loading branch information
Eriold and Daniel Montoya authored Nov 13, 2024
1 parent 2925cb3 commit ab7ce65
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions src/organisms/Events/TypeBox/LargeBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,26 @@ export const LargeBox: FC<ItemsEventsProps> = ({
<Box
width="inherit"
height="100%"
padding="4"
padding="16px"
color="#555555"
gap="16px"
display="grid"
>
<Text fontWeight="700">{eventTitle}</Text>
<Text fontWeight="700" m="0px" p="0px">
{eventTitle}
</Text>
<Box display="flex" alignItems="center" gap="4px">
<Calendar color={vars('colors-main-ziggurat')} />
<Text fontWeight="400">{startDate}</Text>
<Text color={vars('borders-light')}>|</Text>
<Text fontWeight="400" m="0px" p="0px">
{startDate}
</Text>
<Text color={vars('borders-light')} m="0px" p="0px">
|
</Text>
<Clock color={vars('colors-main-ziggurat')} />
<Text>{startTime}</Text>
<Text m="0px" p="0px">
{startTime}
</Text>
</Box>
</Box>
<Box
Expand Down

0 comments on commit ab7ce65

Please sign in to comment.