next space flight css

a

// ==UserScript==
// @name         next space flight css
// @description  a
// @match        https://nextspaceflight.com/*
// @version 0.0.1.20250723124535
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {
    const style = document.createElement('style');

    style.textContent = `
.mdl-grid {
    padding: 0 !important;
}

.mdl-grid > div {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
        `;
    document.head.appendChild(style);
})();