Skip to content

Instantly share code, notes, and snippets.

@qpwo
Created September 15, 2024 17:02
Show Gist options
  • Save qpwo/d59493cada2aa778212358791fde8f90 to your computer and use it in GitHub Desktop.
Save qpwo/d59493cada2aa778212358791fde8f90 to your computer and use it in GitHub Desktop.
full screen slack thread
// full screen thread
let el = document.querySelector(".p-view_contents--secondary")
el.style.minWidth = '100vw';
el.style.minHeight = '100vh';
el.style.position = 'fixed';
el.style.top = '0';
el.style.left = '0';
el.style.margin = '0';
el.style.padding = '0';
el.style.overflow = 'auto';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment