mistral css

a

// ==UserScript==
// @name        mistral css
// @description a
// @match       https://chat.mistral.ai/*
// @run-at      document-start
// @version 0.0.1.20250705144426
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {
    const css = `
* {
gap: unset !important;
}
  `;
    const style = document.createElement('style');
    style.textContent = css;
    document.head.appendChild(style);
})();