Prevent scrollbars in background/overlay iframes

This commit is contained in:
Max Goodhart
2025-06-17 00:07:51 +00:00
parent 373d3fba59
commit 2d93cc6f09
2 changed files with 2 additions and 0 deletions

View File

@@ -23,6 +23,7 @@ function Background({ streams }: { streams: StreamList }) {
src={s.link} src={s.link}
sandbox="allow-scripts allow-same-origin" sandbox="allow-scripts allow-same-origin"
allow="autoplay" allow="autoplay"
scrolling="no"
/> />
))} ))}
</div> </div>

View File

@@ -100,6 +100,7 @@ function Overlay({
src={s.link} src={s.link}
sandbox="allow-scripts allow-same-origin" sandbox="allow-scripts allow-same-origin"
allow="autoplay" allow="autoplay"
scrolling="no"
/> />
))} ))}
</div> </div>