a3k / SvelteMaterialUI top bar remover

// ==UserScript==
// @name         SvelteMaterialUI top bar remover
// @namespace    a3k
// @version      0.1
// @description  Remove annoying top bar
// @author       a3k
// @license      GPL-3.0-only
// @match        https://sveltematerialui.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=sveltematerialui.com
// @grant        none
// @run-at      document-end
// ==/UserScript==

(function() {
    'use strict';
    document.body.classList = [];
})();