Skip to content

Commit

Permalink
Use correct screen height property
Browse files Browse the repository at this point in the history
  • Loading branch information
razvanMiu committed Aug 17, 2021
1 parent efc53d7 commit f52eccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StyleWrapper/StyleWrapperView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function getInlineStyles(data, props = {}) {
...(data.fontSize
? { fontSize: data.fontSize, lineHeight: getLineHeight(data.fontSize) }
: {}),
...(data.isScreenHeight && props.screen.screenHeight
...(data.isScreenHeight && props.screen.height
? {
minHeight: (
props.screen.height -
Expand Down

0 comments on commit f52eccb

Please sign in to comment.