Skip to content

Commit

Permalink
feat(quote): Added quote styled component
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseaCodes committed Nov 29, 2021
1 parent 7a9526e commit a980b89
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/Layout/Quote/styledQuote.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import styled from 'styled-components';

export const StyledQuoteContainer = styled.div`
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 25px;
background-color: #fff;
`;

export const StyledQuoteAuthor = styled.p`
margin-top: 30px;
color: #000;
font-size: 2rem;
`;

export const StyledQuote = styled.q`
line-height: 2;
font-size: 1.8em;
width: 40%;
color: #000;
@media only screen and (max-width: 480px) {
line-height: 1;
font-size: 2.1em;
width: 80%;
}
`;

0 comments on commit a980b89

Please sign in to comment.