We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d91682a commit edb9707Copy full SHA for edb9707
src/components/HorizontalCard.tsx
@@ -21,13 +21,13 @@ const HorizontalCard: React.FC<IProps> = ({
21
}) => (
22
<Flex borderRadius="base" className={className}>
23
<Emoji fontSize={`${emojiSize}rem`} text={emoji} />
24
- <Flex grow="0" shrink="1" basis="75%" ml="8">
+ <Box flexGrow="0" flexShrink="1" flexBasis="75%" ml="8">
25
<Text fontSize="lg">{title}</Text>
26
<Text opacity="0.8" mt="-4" mb="2">
27
{description}
28
</Text>
29
{children}
30
- </Flex>
+ </Box>
31
</Flex>
32
)
33
0 commit comments