We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e65f8 commit ee72f9dCopy full SHA for ee72f9d
1 file changed
src/pages/about.js
@@ -65,10 +65,17 @@ const Blurb = styled.section`
65
}
66
`;
67
68
+const BannerImage = styled.img`
69
+ @media (max-width: 475px) {
70
+ display: none;
71
+ }
72
+`;
73
+
74
export default function About() {
75
return (
76
<Layout>
- <img src={banner} alt="Me standing on stage giving a talk" />
77
+ <BannerImage src={banner} alt="Me standing on stage giving a talk" />
78
79
<AboutMeHeader>
80
<div>
81
<Picture src={me} alt="" />
0 commit comments