mastodon css

a

As of 2025-07-05. See the latest version.

// ==UserScript==
// @name        mastodon css
// @description a
// @match       https://mastodon.social/settings*
// @run-at      document-start
// @version 0.0.1.20250705050736
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {
    const css = `

* {
    padding: unset !important;
    margin: unset !important;
    gap: unset !important;
    width: unset !important;
    min-width: unset !important;
    position: unset !important;
}
  `;
    const style = document.createElement('style');
    style.textContent = css;
    document.head.appendChild(style);
})();