Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove scrollbar-gutter in fullscreen (#5258)

authored by

Samuel Newman and committed by
GitHub
c2249214 b37b64fb

+9
+9
src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx
··· 95 95 } 96 96 }, [interactingViaKeypress]) 97 97 98 + useEffect(() => { 99 + if (isFullscreen) { 100 + document.documentElement.style.scrollbarGutter = 'unset' 101 + return () => { 102 + document.documentElement.style.removeProperty('scrollbar-gutter') 103 + } 104 + } 105 + }, [isFullscreen]) 106 + 98 107 // pause + unfocus when another video is active 99 108 useEffect(() => { 100 109 if (!active) {