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 e405599 commit 7b890fbCopy full SHA for 7b890fb
src/components/EasyAccess.tsx
@@ -29,8 +29,14 @@ export default () => {
29
const EasyAccessWrapper = styled.div`
30
display: flex;
31
border: 3px solid #3e7e75;
32
- margin-left: 6.25rem;
33
- min-width: 550px;
+ @media screen and (min-width: 1200px) {
+ margin-left: 6.25rem;
34
+ min-width: 550px;
35
+ }
36
+
37
+ @media screen and (max-width: 1200px) {
38
+ display: none;
39
40
`;
41
42
const EasyAccessNav = styled(SectionNav)`
0 commit comments