Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

Commit

Permalink
fixed: introduction issue #590
Browse files Browse the repository at this point in the history
  • Loading branch information
AtuyL committed Nov 23, 2018
1 parent 2d10e85 commit 6a1c10b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/components/intro.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Green as GreenButton, Plain as PlainButton } from './button'

const Intro = styled.main`
position: relative;
height: 100vh;
height: 100%;
background-color: var(--color-neutral);
color: var(--color-white);
display: flex;
Expand All @@ -19,13 +19,13 @@ const Intro = styled.main`
const Content = styled.div`
position: relative;
flex: 1;
width: 100vw;
width: 100%;
padding: 3rem 2rem;
`

const Footer = styled.div`
position: relative;
width: 100vw;
width: 100%;
padding: 1rem;
display: flex;
justify-content: space-between;
Expand All @@ -34,8 +34,8 @@ const Footer = styled.div`
}
`
const Image = styled.img`
max-width: 100vw;
max-height: 100vh;
max-width: 100%;
max-height: 100%;
`

const StyledDots = styled.div`
Expand Down

0 comments on commit 6a1c10b

Please # to comment.