adjust gitlab width for you!
ของเมื่อวันที่
// ==UserScript==
// @name Gitlab width
// @namespace http://tampermonkey.net/
// @version 0.2
// @description adjust gitlab width for you!
// @author gshmu
// @match https://gitpd.paodingai.com/cheftin/*
// @grant GM_addStyle
// @icon https://www.google.com/s2/favicons?sz=64&domain=paodingai.com
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
@media (min-width: 900px) {
.container-limited.limit-container-width {
max-width: 80%;
}
.container-limited {
max-width: 80%;
}
}
`);
})();