Pedro Ferreira
Pedro Ferreira
same issue, im running a 1080p monitor on the left and a main 1440p monitor had to hard code width to 4480, height to 1440p and give a fixed position...
I would like to be able to zoom below 100% due to my scaling options, I run all my electron apps at 80% (when possible)
Simple workaround: Define the component has having a px size then on the components's did mount function set it to a percentage: ``` componentDidMount() { document.getElementById('content').style.height = '30%'; } ......