From 3d4041ecd3d9384853514ea0cebc445e630b106e Mon Sep 17 00:00:00 2001 From: August Skare Date: Mon, 29 Oct 2018 08:13:03 +0000 Subject: 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 --- packages/dev-tools-pages/ts/components/InlineCode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/dev-tools-pages/ts/components/InlineCode.tsx') diff --git a/packages/dev-tools-pages/ts/components/InlineCode.tsx b/packages/dev-tools-pages/ts/components/InlineCode.tsx index 4b5afa95c..9f25927cd 100644 --- a/packages/dev-tools-pages/ts/components/InlineCode.tsx +++ b/packages/dev-tools-pages/ts/components/InlineCode.tsx @@ -9,7 +9,7 @@ interface InlineCodeProps { const InlineCode = styled(({ alt, children, ...props }: InlineCodeProps) => {children})` background-color: ${props => (props.alt ? '#E5E8E9' : colors.blueGray)}; - padding: 0.1875rem; + padding: 0.3125rem; `; export default InlineCode; -- cgit v1.2.3