Skip to content

Commit

Permalink
style: hide store front img on mobile (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex94143 authored Feb 24, 2022
1 parent 62ef728 commit 129dddd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/home/Home.styles.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import styled from "styled-components";
import {ReactComponent as LandingPageSky} from "../../assets/LandingPageSky.svg";
import { ReactComponent as LandingPageSky } from "../../assets/LandingPageSky.svg";

export const PageContainer = styled.div`
display: flex;
Expand All @@ -24,11 +24,15 @@ export const StyledLandingPageSky = styled(LandingPageSky)`
`;

export const StyledStoreFront = styled.img`
display: none;
position: absolute;
width: 800px;
height: 800px;
left: 0px;
top: 150px;
@media (min-width: 768px) {
display: block;
}
`;

export const SearchSection = styled.div`
Expand Down

0 comments on commit 129dddd

Please sign in to comment.