Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
dskill committed Nov 17, 2024
1 parent 3d9cf23 commit 98219ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,7 @@ button:active {
border: none;
border-radius: 4px;
cursor: pointer;
font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
font-size: 24px;
color: rgb(198, 202, 224);
transition: all 0.3s ease;
Expand Down Expand Up @@ -788,9 +789,6 @@ button:active {
left: 50%;
transform: translateX(-50%);
z-index: 2000;
font-family: 'VT323', monospace;
font-size: 16px;
color: rgb(198, 202, 224);
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(198, 202, 224, 0.3);
padding: 8px 20px;
Expand Down
4 changes: 3 additions & 1 deletion src/VisualizationMode.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ function VisualizationMode({ synths, currentSynth, switchSynth, nextSynth, previ
)}

<button className="select-screen-button" onClick={onOpenEffectSelect}>
{currentSynth ? prettifySynthName(currentSynth.name) : 'No Effect Selected'}
<div className="effect-name">
{currentSynth ? prettifySynthName(currentSynth.name) : 'No Effect Selected'}
</div>
</button>

<VisualizationCanvas currentEffect={currentSynth} />
Expand Down

0 comments on commit 98219ed

Please sign in to comment.