Skip to content

Commit 13580eb

Browse files
author
webdev778
authored
Merge pull request #109 from interscript/mobile-responsive-issue
Fix #107, #108
2 parents e405599 + 7b890fb commit 13580eb

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/components/EasyAccess.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,14 @@ export default () => {
2929
const EasyAccessWrapper = styled.div`
3030
display: flex;
3131
border: 3px solid #3e7e75;
32-
margin-left: 6.25rem;
33-
min-width: 550px;
32+
@media screen and (min-width: 1200px) {
33+
margin-left: 6.25rem;
34+
min-width: 550px;
35+
}
36+
37+
@media screen and (max-width: 1200px) {
38+
display: none;
39+
}
3440
`;
3541

3642
const EasyAccessNav = styled(SectionNav)`

0 commit comments

Comments
 (0)