Feature/feedbacktweaks (#11)

* Fix typo

* Fix 1px line showing in middle of divs

* Increase inline code padding by 2px

* Make masonry block not full width on screens larger than mobile

* Align list items

* Change button text to copied if it's been copied
This commit is contained in:
August Skare
2018-10-29 08:13:03 +00:00
committed by GitHub
parent 89e439c521
commit 3d4041ecd3
5 changed files with 33 additions and 24 deletions

View File

@@ -9,7 +9,7 @@ interface InlineCodeProps {
const InlineCode = styled(({ alt, children, ...props }: InlineCodeProps) => <code {...props}>{children}</code>)`
background-color: ${props => (props.alt ? '#E5E8E9' : colors.blueGray)};
padding: 0.1875rem;
padding: 0.3125rem;
`;
export default InlineCode;