Last active
August 30, 2021 07:58
-
-
Save MicahZoltu/ca57ef19adcbce1391d863eef26f867b to your computer and use it in GitHub Desktop.
GitHub Widescreen Boookmarklet
This file contains 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
javascript:(function(){ const style = document.createElement('style'); style.id = 'injected-css'; style.innerText = `.container-xl, #review-changes-modal .SelectMenu-modal, .inline-comment-form-container, .inline-comment-form, .comment-holder, #pull_request_review_body { max-height: none !important; max-width: none !important; } .js-resolvable-timeline-thread-container, .js-line-comments { max-width: calc(100vw - 100px); }`; document.head.appendChild(style); })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment