Doodle3D/doodle3d-client

To many scrollbars in Chrome & Firefox

peteruithoven opened this issue · 0 comments

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

This was cused by: #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.