Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Pau1fitz committed Oct 1, 2019
1 parent e34da27 commit 9293342
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/components/src/typography/DocumentFormatting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ const codeCommon = ({ theme }: { theme: Theme }): CSSObject => ({
backgroundColor: theme.color.lighter,
borderRadius: '3px',
fontSize: theme.typography.size.s2 - 1,
color: theme.base === 'dark' && theme.color.darkest,
});

export const P = styled.p<{}>(withReset, withMargin, ({ theme }) => ({
Expand Down
1 change: 1 addition & 0 deletions lib/components/src/typography/DocumentWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,7 @@ export const DocumentWrapper = styled.div(
border: 1px solid ${theme.color.mediumlight};
background-color: ${theme.color.lighter};
border-radius: 3px;
color: ${theme.base === 'dark' && theme.color.darkest};
}
`
);

0 comments on commit 9293342

Please sign in to comment.