Closed rado0x54 closed 4 years ago
Hey,
scrolling does not work on the main right panel at all. It seems that you have to attach the overflow: scroll element to the parent <div> with the specified height attributed and not the <table> element. This fixes it for me.
overflow: scroll
<div>
<table>
.container-records[_ngcontent-tmi-c4] { height: calc(100vh - 30px); overflow: scroll; }
Thanks ;)
Hey,
scrolling does not work on the main right panel at all. It seems that you have to attach the
overflow: scroll
element to the parent<div>
with the specified height attributed and not the<table>
element. This fixes it for me.