redux-devtools icon indicating copy to clipboard operation
redux-devtools copied to clipboard

UI Bug - Using more than 100% of the window height, last item not appearing

Open brunolemos opened this issue 3 years ago • 3 comments

At the beginning, you can still see the bottom toolbar:

image

But when there's many actions, the main area height gets bigger than it should, so we can't see part of the bottom content:

image

Looking at the inspector, the main area incorrectly has the same size of the window, instead of being windowHeight-topHeaderHeight (see how both have 523px as height):

image image

brunolemos avatar Jul 22 '20 03:07 brunolemos

Adding max-height: calc(100vh - 2*37px); to this component is a temporary workaround.


Stylish extension:

#root > div > div[class*='inspector'] {
    max-height: calc(100vh - 2*37px);
}

brunolemos avatar Aug 26 '20 06:08 brunolemos

same here. How can we fix it?

rendomnet avatar Jan 29 '21 09:01 rendomnet

There is a UI redesign in progress, so unfortunately I don't think this will get fixed on the old version. Users will just have to use the new UI once it's stable if they don't want to experience this bug.

Methuselah96 avatar Jan 29 '21 14:01 Methuselah96