nothing, dw about it

Modifies CSS on torn.com

// ==UserScript==
// @name         nothing, dw about it
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Modifies CSS on torn.com
// @author       G
// @match        https://*.torn.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement('style');
    style.textContent = `
        .appHeader___gUnYC>:nth-child(2) {
            margin-left: auto !important;
        }
    `;
    document.head.appendChild(style);
})();