Skip to content

Commit

Permalink
FIX syntax highlighter plain text not visible (#7057)
Browse files Browse the repository at this point in the history
FIX syntax highlighter plain text not visible
  • Loading branch information
shilman committed Jun 12, 2019
2 parents 59316b9 + 70f932f commit 8495523
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Expand Up @@ -337,7 +337,7 @@ exports[`Storyshots Basics|DocumentFormatting withDOM 1`] = `
padding: 15px;
margin: 0;
white-space: pre-wrap;
color: #333333;
color: inherit;
font-size: 13px;
line-height: 19px;
}
Expand Down Expand Up @@ -772,7 +772,7 @@ exports[`Storyshots Basics|DocumentFormatting withDOM 1`] = `
padding: 15px;
margin: 0;
white-space: pre-wrap;
color: #333333;
color: inherit;
font-size: 13px;
line-height: 19px;
}
Expand Down Expand Up @@ -1533,7 +1533,7 @@ exports[`Storyshots Basics|DocumentFormatting withMarkdown 1`] = `
padding: 15px;
margin: 0;
white-space: pre-wrap;
color: #333333;
color: inherit;
font-size: 13px;
line-height: 19px;
}
Expand Down Expand Up @@ -1968,7 +1968,7 @@ exports[`Storyshots Basics|DocumentFormatting withMarkdown 1`] = `
padding: 15px;
margin: 0;
white-space: pre-wrap;
color: #333333;
color: inherit;
font-size: 13px;
line-height: 19px;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/components/src/typography/DocumentFormatting.tsx
Expand Up @@ -50,7 +50,7 @@ const Wrapper = styled.div(
margin: 0;
white-space: pre-wrap;
color: ${props.theme.color.darkest};
color: inherit;
font-size: 13px;
line-height: 19px;
Expand Down
4 changes: 2 additions & 2 deletions lib/ui/src/settings/__snapshots__/about.stories.storyshot
Expand Up @@ -990,7 +990,7 @@ exports[`Storyshots UI|Settings/AboutScreen new version required 1`] = `
padding: 15px;
margin: 0;
white-space: pre-wrap;
color: #333333;
color: inherit;
font-size: 13px;
line-height: 19px;
}
Expand Down Expand Up @@ -2519,7 +2519,7 @@ exports[`Storyshots UI|Settings/AboutScreen up to date 1`] = `
padding: 15px;
margin: 0;
white-space: pre-wrap;
color: #333333;
color: inherit;
font-size: 13px;
line-height: 19px;
}
Expand Down

1 comment on commit 8495523

@vercel
Copy link

@vercel vercel bot commented on 8495523 Jun 12, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.