fix: minor UI updates
This commit is contained in:
@@ -137,7 +137,8 @@
|
|||||||
.piano-roll-title {
|
.piano-roll-title {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 14px;
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
color: #e0e0e0;
|
color: #e0e0e0;
|
||||||
/* text-transform: uppercase; */
|
/* text-transform: uppercase; */
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|||||||
@@ -19,12 +19,6 @@ const PianoRollHeader: React.FC<PianoRollHeaderProps> = ({
|
|||||||
className="piano-roll-header"
|
className="piano-roll-header"
|
||||||
onMouseDown={onMouseDown}
|
onMouseDown={onMouseDown}
|
||||||
>
|
>
|
||||||
<button
|
|
||||||
className="close-button"
|
|
||||||
onClick={onClose}
|
|
||||||
>
|
|
||||||
<FaTimes />
|
|
||||||
</button>
|
|
||||||
<div
|
<div
|
||||||
className="piano-roll-title"
|
className="piano-roll-title"
|
||||||
onClick={onTitleClick}
|
onClick={onTitleClick}
|
||||||
@@ -32,6 +26,12 @@ const PianoRollHeader: React.FC<PianoRollHeaderProps> = ({
|
|||||||
>
|
>
|
||||||
{title}
|
{title}
|
||||||
</div>
|
</div>
|
||||||
|
<button
|
||||||
|
className="close-button"
|
||||||
|
onClick={onClose}
|
||||||
|
>
|
||||||
|
<FaTimes />
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user