Skip to content

Commit

Permalink
fix: image resizes to browser
Browse files Browse the repository at this point in the history
  • Loading branch information
Cayla Hamann committed Aug 21, 2020
1 parent 7d122a3 commit 1c7bfad
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,16 @@ const IndexPage = ({ data, pageContext }) => {
css={css`
flex: 1;
margin-top: 0;
width: 100%;
`}
>
<img src={nerdDays} alt="nerd days header" />
<img
css={css`
width: inherit;
`}
src={nerdDays}
alt="nerd days header"
/>
</div>
</section>

Expand Down

0 comments on commit 1c7bfad

Please sign in to comment.