Video - Component scroll bar

settings

Code

And

is on GH Pages at https://barrycarlyon.github.io/twitch_extension_debug/

so, you can plumb thse values into your own extension as the code is “clientID/secret less/no ebs”

In summary, (so in my original reply I was just missing the nested div, which is where the magic happens), since I always have a content div and do ally my work to that div rather than the body

<html>
<head>
</head>
<body>
<div id="content"></div>
</body>
</html>
html, body, #content {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

#content {
    overflow: scroll;
}
1 Like