some ui for #13

This commit is contained in:
michalcourson
2025-12-05 18:37:20 -05:00
parent 234e0d3e8a
commit cb069089c0
5 changed files with 156 additions and 81 deletions

View File

@ -31,8 +31,8 @@ export default function MidiNoteInfo() {
}, []);
return (
<div className="rounded-lg" style={{ marginTop: "1rem" }}>
<PianoKeyboard heldNotes={notes} />
<div className="rounded-lg h-[80px]" style={{ marginTop: "1rem" }}>
<PianoKeyboard heldNotes={notes} LOWEST_MIDI={24} HIGHEST_MIDI={84} />
</div>
);
}