~~Im facing this issue with embedding compose web ...
# compose-web
a
~~Im facing this issue with embedding compose web inside of an iframe~~* even though i set the height of the iframe to be 400px, the contents of it end up being 404px and it causes the compose app to scroll. this is probably some styling issue, but i cant figure it out. any ideas? * Turns out this has nothing to do with the iframe. just running the app separately scrolls in place, even if the body is width + height 100%
I was missing the
overflow: hidden
property in my css. All good after
Copy code
* {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
👍 1