Skip to content

Commit

Permalink
fix(addons-info): change stylesheetBase info height from 110vh to 100…
Browse files Browse the repository at this point in the history
…vh (#7141)

fix(addons-info): change stylesheetBase info height from 110vh to 100vh
  • Loading branch information
shilman committed Jul 31, 2019
1 parent 3351861 commit efba0ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions addons/info/src/__snapshots__/index.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,12 @@ exports[`addon Info should render <Info /> and external markdown 1`] = `
"background": "white",
"bottom": 0,
"display": "none",
"height": "100vh",
"left": 0,
"overflow": "auto",
"padding": "0 40px",
"position": "fixed",
"right": 0,
"top": 0,
"width": "100vw",
"zIndex": 99999,
}
}
Expand Down Expand Up @@ -1389,12 +1389,12 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)"
"background": "white",
"bottom": 0,
"display": "none",
"height": "100vh",
"left": 0,
"overflow": "auto",
"padding": "0 40px",
"position": "fixed",
"right": 0,
"top": 0,
"width": "100vw",
"zIndex": 99999,
}
}
Expand Down Expand Up @@ -2722,12 +2722,12 @@ exports[`addon Info should render <Info /> for memoized component 1`] = `
"background": "white",
"bottom": 0,
"display": "none",
"height": "100vh",
"left": 0,
"overflow": "auto",
"padding": "0 40px",
"position": "fixed",
"right": 0,
"top": 0,
"width": "100vw",
"zIndex": 99999,
}
}
Expand Down
4 changes: 2 additions & 2 deletions addons/info/src/components/Story.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const stylesheetBase = {
top: 0,
bottom: 0,
left: 0,
right: 0,
padding: '0 40px',
height: '100vh',
width: '100vw',
overflow: 'auto',
zIndex: 99999,
},
Expand Down

0 comments on commit efba0ef

Please sign in to comment.