Skip to content

Commit

Permalink
Interface UX updates (#6)
Browse files Browse the repository at this point in the history
- Increase interface font size to 13px
- Update Help line readability
- Change menu item order
  • Loading branch information
rihardsgravis authored Jan 21, 2021
1 parent c3b76bf commit 11bba18
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion core/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
button {
background: none;
border: none;
font-size: 12px;
font-size: 13px;
}

button {
Expand Down
4 changes: 2 additions & 2 deletions core/src/rack/Bar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@
</svg>
</button>
<Menu bind:toggle={menuMainToggle}>
<button on:click={onAddModule}>Add module <strong>SPACE</strong></button>
<hr />
<button on:click={onReset}>New <strong>CTRL+N</strong></button>
<hr />
<button on:click={onAddModule}>Add module <strong>SPACE</strong></button>
<hr />
<button on:click={onExport}>Save to file <strong>CTRL+S</strong></button>
<button on:click={onImport}>Load from file <strong>CTRL+O</strong></button>
<hr />
Expand Down
14 changes: 12 additions & 2 deletions core/src/rack/Help.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,21 @@
display: flex;
justify-content: space-between;
list-style: none;
font-size: 12px;
font-size: 13px;
font-weight: 300;
margin: 12px;
margin: 0 12px;
padding: 12px;
}
hr {
border-bottom: dashed 1px var(--color-dark-highlight);
margin: 0 6px;
flex: 1;
}
li:hover hr {
border-color: var(--color-light-shadow);
}
</style>

<svelte:body on:keydown={onKey} />
Expand Down Expand Up @@ -96,6 +101,11 @@
<hr />
<strong>SHIFT+CLICK</strong>
</li>
<li>
Duplicate a module
<hr />
<strong>RIGHT CLICK</strong>
</li>
<li>
Mute/Unmute all outputs
<hr />
Expand Down

1 comment on commit 11bba18

@vercel
Copy link

@vercel vercel bot commented on 11bba18 Jan 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.