You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, since TruncatedFormat and Table components are using overflow: scroll, although they display beautifully with no mouse attached:
It becomes somewhat unnecessary and imperfect when you plug in the mouse. The scroll bars for X and Y are always shown in this case, even for a not overflowed component:
By using overflow: auto on those components, the visual effect of those components are always displayed beautifully whether mouse is attached or not.
May I know is there any concern for using overflow: scroll? If not, I can go ahead and submit a PR for this :D
The text was updated successfully, but these errors were encountered:
Actually this line should be changed to overflow: auto also. If you pay closer attention to the differences between the two pictures in the original post... And there might be more unnecessary overflow: scroll in this project. Should I raise another issue for that?
Currently, since TruncatedFormat and Table components are using
overflow: scroll
, although they display beautifully with no mouse attached:It becomes somewhat unnecessary and imperfect when you plug in the mouse. The scroll bars for X and Y are always shown in this case, even for a not overflowed component:
By using
overflow: auto
on those components, the visual effect of those components are always displayed beautifully whether mouse is attached or not.May I know is there any concern for using
overflow: scroll
? If not, I can go ahead and submit a PR for this :DThe text was updated successfully, but these errors were encountered: