Last active
February 9, 2021 07:16
-
-
Save kuanyui/a0d246ce701d577c1082b986dec7bfea to your computer and use it in GitHub Desktop.
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
// ==UserScript== | |
// @name Full-Width in Webpack | |
// @version 0.1 | |
// @grant none | |
// @match https://webpack.js.org/* | |
// @run-at document-end | |
// @grant none | |
// ==/UserScript== | |
const el = document.createElement('style') | |
el.innerText =` | |
.container { max-width: unset; } | |
` | |
document.body.appendChild(el) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment