-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Description
When the presentation canvas has a color other than white the page background appears as white area under the canvas in fullscreen.
Steps to reproduce:
- New presentation. Menu->Edit CSS-> add: svg{ background: black; }
- Set browser to fullscreen.
This is due to the canvas not scaling in height (only uniform scaling possible so far).
A workaround is to set the page background in the CSS to the same color as the canvas background. (Menu->Edit CSS-> add body{ background: black; } ).