Ubiquiti QR code fix

Apply CSS to specific content on a website

// ==UserScript==
// @name         Ubiquiti QR code fix
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Apply CSS to specific content on a website
// @author       BerserkeR_031
// @match        https://192.168.0.1/network/*/settings/vpn/server/form/*
// @grant        GM_addStyle
// @icon         https://www.ui.com/microsite/favicon.ico?v=2
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Change CSS if it's no longer working, here.
    GM_addStyle(`
        :root .content__gmtGCcmz.content-dark__gmtGCcmz.content-noHeader__gmtGCcmz.content-noFooter__gmtGCcmz {
            background-color: white !important;
        }
    `);
})();