Claude fixed (hopefully) the top bars clipping outside the screen

This commit is contained in:
2026-02-23 18:06:26 +02:00
parent cf9fa91238
commit 6ed3b4bbe6
3 changed files with 6 additions and 6 deletions

View File

@@ -971,7 +971,7 @@ export default function MelodyList() {
const selectClass = "px-3 py-2 rounded-md text-sm cursor-pointer border";
return (
<div className="w-full min-w-0 max-w-full overflow-hidden">
<div className="w-full min-w-0 max-w-full">
<div className="w-full min-w-0 relative" style={{ zIndex: 30 }}>
<div className="flex items-center justify-between mb-6 w-full min-w-0">
<h1 className="text-2xl font-bold" style={{ color: "var(--text-heading)" }}>Melodies</h1>
@@ -1215,7 +1215,7 @@ export default function MelodyList() {
</div>
) : (
<div
className="rounded-lg border max-w-full"
className="rounded-lg border max-w-full overflow-hidden"
style={{
backgroundColor: "var(--bg-card)",
borderColor: "var(--border-primary)",