a
// ==UserScript==
// @name mastodon css
// @description a
// @match https://mastodon.social/settings*
// @run-at document-start
// @version 0.0.1.20250705051146
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function () {
const css = `
.sidebar-wrapper, .sidebar-wrapper * {
width: unset !important;
}
`;
const style = document.createElement('style');
style.textContent = css;
document.head.appendChild(style);
})();