Skip to content

Instantly share code, notes, and snippets.

@TheLouisHong
Last active April 6, 2024 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheLouisHong/ad9bdde054cac63ca40e09b04b33df48 to your computer and use it in GitHub Desktop.
Save TheLouisHong/ad9bdde054cac63ca40e09b04b33df48 to your computer and use it in GitHub Desktop.
Suno.ai Widen UI
// ==UserScript==
// @name Suno.ai Widen UI
// @version 2024-04-05
// @description Widens suno.ai's song generation panel
// @author Louis Hong
// @match *://app.suno.ai/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=suno.ai
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
let customCss =
`
div.chakra-stack.css-1kdca34 {
width: 720px !important;
max-width: 40% !important;
}
nav.css-1jiv1el {
width: 100px !important;
}
`;
GM_addStyle(customCss);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment