Skip to content

Commit

Permalink
Some more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
cohansen committed Jun 18, 2024
1 parent a783c02 commit 21a25ae
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/sequencing/CommandTooltip.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,21 @@
}
</script>

<div class="command-tooltip">
<div class="container">
<div class="command-tooltip st-typography-body">
<div class="container command-name">
{commandExample}
</div>

<hr />

<div class="container">
{command.description}
</div>
</div>

<style>
.command-name {
border-bottom: 1px solid var(--st-gray-30);
}
.container {
align-items: center;
display: flex;
Expand Down
2 changes: 2 additions & 0 deletions src/components/sequencing/Sequences.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,8 @@

<style>
.filter-container {
display: flex;
align-items: center;
margin-bottom: 8px;
}
</style>
8 changes: 8 additions & 0 deletions src/components/sequencing/form/SelectedCommand.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,14 @@
/>
{/if}
{/if}
{:else}
<div class="content">Select a command to modify its parameters.</div>
{/if}
</svelte:fragment>
</Panel>

<style>
.content {
padding: 8px 16px 0px;
}
</style>

0 comments on commit 21a25ae

Please sign in to comment.