grok css

a

// ==UserScript==
// @name         grok css
// @description  a
// @match        https://grok.com/*
// @version 0.0.1.20250719093723
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

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

    style.textContent = `
* {
            min-width: revert !important;
            gap: revert !important;
            padding-left: revert !important;
            padding-right: revert !important;
            margin-left: revert !important;
            margin-right: revert !important;
            /*overflow: revert !important;
            white-space: revert !important;*/
        }

        table * {
          overflow-wrap: anywhere !important;
        }

        .message-bubble:not(.w-full) {
            background-color: blue;
        }

button {
white-space: revert !important;
}

button[aria-label="Scroll down"] {
display: none !important;
}

canvas {
display: none !important;
}

div:has(> button > svg > path[d^="M12 4H8C5.79086 4 4 5.79086"]) {
    display: none !important;
}
        `;
    document.head.appendChild(style);
})();