Skip to content

Instantly share code, notes, and snippets.

@thomas-riccardi
Created April 8, 2025 09:38
Show Gist options
  • Save thomas-riccardi/b3bb8739293e2d7f39b7907b6adaaf45 to your computer and use it in GitHub Desktop.
Save thomas-riccardi/b3bb8739293e2d7f39b7907b6adaaf45 to your computer and use it in GitHub Desktop.
UserScript: Wider content area on Github: PR, issues
// ==UserScript==
// @name Github wider
// @namespace http://tampermonkey.net/
// @version 2025-04-08
// @description Wider content area on Github: PR, issues
// @author Thomas Riccardi
// @match https://github.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
GM_addStyle ( `
/* full PR/issues page: wider */
.container-xl {
max-width: 1500px !important;
}
` );
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment