Skip to content

Commit

Permalink
make the body of the editor minimmum viewport height so that smaller …
Browse files Browse the repository at this point in the history
…contents maintain clickability (#52406)
  • Loading branch information
draganescu authored and tellthemachines committed Jul 10, 2023
1 parent eb8ef9f commit 8b10e6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function EditorCanvas( { enableResizing, settings, children, ...props } ) {
enableResizing ? 'min-height:0!important;' : ''
}}body{position:relative; ${
canvasMode === 'view'
? 'cursor: pointer; height: 100vh'
? 'cursor: pointer; min-height: 100vh;'
: ''
}}}`
}</style>
Expand Down

0 comments on commit 8b10e6a

Please sign in to comment.