Created
September 15, 2024 17:02
-
-
Save qpwo/d59493cada2aa778212358791fde8f90 to your computer and use it in GitHub Desktop.
full screen slack thread
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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