diff --git a/server.mjs b/server.mjs index 7bc0ac0..68631b5 100644 --- a/server.mjs +++ b/server.mjs @@ -466,6 +466,10 @@ async function handleGenerate(req, res) { signal, ); + if (body.section === 'lyrics_partial') { + return json(res, { lyrics: content }); + } + const parsed = extractJson(content); if (body.section === 'all') { diff --git a/src/index.css b/src/index.css index 59710d9..0b2f17d 100644 --- a/src/index.css +++ b/src/index.css @@ -35,7 +35,6 @@ html, body, #root { height: 100%; - overflow: hidden; font-family: 'Inter', system-ui, sans-serif; cursor: url('/cursor-default.svg') 4 2, auto; } @@ -51,6 +50,7 @@ body { @apply bg-bg text-fg antialiased transition-colors duration-300; margin: 0; + overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }