Skip to content

Commit

Permalink
Fix custom themes breaking the welcome demo. (#8259)
Browse files Browse the repository at this point in the history
Fix custom themes breaking the welcome demo.
  • Loading branch information
shilman committed Oct 22, 2019
1 parent eeee22b commit 077a319
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Expand Up @@ -121,6 +121,7 @@ exports[`Storyshots Welcome To Storybook 1`] = `
style={
Object {
"backgroundColor": "#fff",
"color": "#000",
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
"lineHeight": 1.4,
"padding": 15,
Expand Down
Expand Up @@ -101,6 +101,7 @@ exports[`Storyshots Welcome To Storybook 1`] = `
style={
Object {
"backgroundColor": "#fff",
"color": "#000",
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
"lineHeight": 1.4,
"padding": 15,
Expand Down
Expand Up @@ -5,6 +5,7 @@ exports[`Storyshots Welcome To Storybook 1`] = `
style={
Object {
"backgroundColor": "#fff",
"color": "#000",
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
"lineHeight": 1.4,
"padding": 15,
Expand Down
Expand Up @@ -5,6 +5,7 @@ exports[`Storyshots Welcome To Storybook 1`] = `
style={
Object {
"backgroundColor": "#fff",
"color": "#000",
"fontFamily": "\\"Helvetica Neue\\", Helvetica, \\"Segoe UI\\", Arial, freesans, sans-serif",
"lineHeight": 1.4,
"padding": 15,
Expand Down
1 change: 1 addition & 0 deletions app/react/src/demo/Welcome.tsx
Expand Up @@ -9,6 +9,7 @@ const Main = (props?: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>,
lineHeight: 1.4,
fontFamily: '"Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif',
backgroundColor: '#fff',
color: '#000',
}}
/>
);
Expand Down

0 comments on commit 077a319

Please sign in to comment.