Doodle3D / doodle3d-client

The Doodle3D web interface that people can access on computers or tablets to draw doodles and control the Doodle3D WiFi box.
www.doodle3d.com
GNU General Public License v2.0
3 stars 8 forks source link

To many scrollbars in Chrome & Firefox #306

Open peteruithoven opened 8 years ago

peteruithoven commented 8 years ago

Chrome: screenshot from 2016-05-10 12 35 04

This was cused by: https://github.com/Doodle3D/doodle3d-client/issues/261 Which basicly created two overflow scroll rules:

We probbaly want to limit the newer one in settings.css to Y:

overflow-x: hidden;
overflow-y: scroll;

And remove the upper older one:

overflow: hidden;

This change would require some cross platform testing.