Skip to content

Commit

Permalink
feat(Popin): adds responsiveness to paragraph
Browse files Browse the repository at this point in the history
  • Loading branch information
newick committed May 14, 2020
1 parent 1d175fe commit 4843d5f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/molecules/Popin/PopinParagraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ const PopinParagraph = styled(Paragraph)`
min-width: 0;
margin-top: 0;
}
@media (max-width: ${props => props.theme.tabletWidth}) {
strong {
margin-bottom: 0;
}
${BackgroundButton} {
margin-top: 10px;
}
}
`;

export default PopinParagraph;

0 comments on commit 4843d5f

Please sign in to comment.