Can not access top buttons in fullscreen mode

The buttons are under the header bar and are hard to click.
I have the same problem, in full screen mode the buttons at the top and at the bottom are hidden under the header and footer from OctoPrint.
To see the buttons at the bottom I can scroll down, but I cannot do anything to see the button at the top.

Hi. Same Problem here. I think it's a problem with the UI Customizer Plugin.
I'm also using UI Customizer, this CSS pushes down the buttons alongside hiding the status bar (that for some reason only ever shows as 0 for me).
- Open OctoPrint Settings
- Under Settings > Plugins > UI Customizer > Advanced > Custom CSS, paste in the following:
.pgfullscreen #tab_plugin_prettygcode .gwin {
margin-top: 40px;
}
.pgfullscreen .pgstatus {
display: none;
}
Before

After

If you want to get rid of the navbar completely you can use this CSS instead (from this issue)
.pgfullscreen #navbar { visibility:hidden; }