Skip to content

Commit

Permalink
fix image size
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavomm19 committed Feb 24, 2025
1 parent 7f38997 commit c01b689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/components/MktSideRecommendations.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ function MktSideRecommendations({ title, endpoint, technologies, containerPaddin
return (
<Box key={recom?.slug} overflow="hidden" border="1px solid" borderColor={recom.color || { base: 'default', md: 'success' }} borderRadius={rest.borderRadius || '8px'}>
{recom?.banner_image
&& <Image src={recom?.banner_image} width="100%" height="100px" />}
&& <Image src={recom?.banner_image} width="100%" height="120px" />}
<Container borderRadius="none" padding={containerPadding} course={recom} courses={recommendations}>
<TagCapsule tags={tags} background="green.light" color="green.500" fontWeight={700} fontSize="13px" marginY="0" paddingX="0" variant="rounded" gap="10px" display={{ base: 'none', md: 'inherit' }} />
<Box mb="10px" display="flex" flexDirection={{ base: 'column', md: 'row' }} gridGap="8px" alignItems="center">
Expand Down

0 comments on commit c01b689

Please sign in to comment.