Skip to content

Commit

Permalink
Create QuizContainer component
Browse files Browse the repository at this point in the history
  • Loading branch information
TheeDouglasAM3 committed Jan 28, 2021
1 parent e177068 commit be60c94
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/components/QuizContainer/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import styled from 'styled-components'

const QuizContainer = styled.div`
width: 100%;
max-width: 350px;
padding-top: 15px;
margin: auto 10%;
@media screen and (max-width: 500px) {
margin: auto;
padding-top: 15px;
}
`

export default QuizContainer

0 comments on commit be60c94

Please sign in to comment.