fix: minor UI updates

This commit is contained in:
Xiaohan-Tian
2026-05-01 18:49:28 -07:00
parent b7926300e1
commit 756fc1bc6c
2 changed files with 8 additions and 7 deletions
+2 -1
View File
@@ -137,7 +137,8 @@
.piano-roll-title {
flex: 1;
text-align: center;
font-size: 14px;
font-size: 12px;
font-weight: bold;
color: #e0e0e0;
/* text-transform: uppercase; */
cursor: pointer;
@@ -19,12 +19,6 @@ const PianoRollHeader: React.FC<PianoRollHeaderProps> = ({
className="piano-roll-header"
onMouseDown={onMouseDown}
>
<button
className="close-button"
onClick={onClose}
>
<FaTimes />
</button>
<div
className="piano-roll-title"
onClick={onTitleClick}
@@ -32,6 +26,12 @@ const PianoRollHeader: React.FC<PianoRollHeaderProps> = ({
>
{title}
</div>
<button
className="close-button"
onClick={onClose}
>
<FaTimes />
</button>
</div>
);
};