gentlespoon / USCIS-Case-Status-Checker

A tool for tracking USCIS case status.
MIT License
28 stars 16 forks source link

Scrolling does not work on "container-status-list" #11

Closed rado0x54 closed 4 years ago

rado0x54 commented 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.

.container-records[_ngcontent-tmi-c4] {
    height: calc(100vh - 30px);
    overflow: scroll;
}
rado0x54 commented 4 years ago

Thanks ;)