nova-logs
nova-logs copied to clipboard
Stack button content is broken
When you are trying to click on Stack
button - there is modal window popping up and it doesn't has background, so it's unreadable.
The problem is coming from a CSS rule which is not supported on Firefox (I think you use firefox like me :))
In file resources/js/components/Show/Logs.vue there is a code
<div style="width: 950px;height:600px;overflow: overlay;">
And the problem is overflow:overlay
, it should be changed to overflow:auto
Behaves the same as auto, but with the scrollbars drawn on top of content instead of taking up space. Only supported in WebKit-based (e.g., Safari) and Blink-based (e.g., Chrome or Opera) browsers.