Skip to content

Commit 9a3e839

Browse files
committed
Fix Callout content overflow
1 parent f2c42da commit 9a3e839

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/Callout.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ const Callout = ({
5252
}) => {
5353
return (
5454
<StyledCard className={className}>
55-
{/* <Image
55+
<Image
5656
fluid={image}
5757
alt={`${title} image`}
5858
maxImageWidth={maxImageWidth}
59-
/> */}
59+
/>
6060
<Content>
6161
<div>
6262
<h3>{title}</h3>

src/pages/what-is-ethereum.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ const SingleCard = styled(StyledCard)`
236236

237237
const StyledCallout = styled(Callout)`
238238
flex: 1 1 424px;
239+
height: 100%;
239240
`
240241

241242
const cards = [

0 commit comments

Comments
 (0)