Skip to content

Commit

Permalink
fix: set depth between buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
istudyatuni committed May 13, 2022
1 parent 36d560b commit 47162da
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/Settings.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@

<div class="mb-2">
<p>
Magnification depth: {magnification_depth}
<Button on:click={decrease_depth} class="py-0.5">-</Button>
<Button on:click={increase_depth} class="py-0.5">+</Button>
Magnification depth:
<Button on:click={decrease_depth} class="mr-1">-</Button>
{magnification_depth}
<Button on:click={increase_depth} class="ml-1">+</Button>
</p>
</div>

Expand Down

0 comments on commit 47162da

Please sign in to comment.