Skip to content

Commit 17273c9

Browse files
committed
chore(toolbar): Adjust spacing
1 parent e4fdf6e commit 17273c9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/src/lib/editor/Toolbar.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@
4747
{#if canvasManager.tool === "pen"}
4848
<div
4949
style="grid-area: 1 / 1;"
50-
class="p-4 w-10 rounded-l-xl bg-base-3 flex flex-col gap-2 my-auto items-center justify-center pointer-events-auto z-0"
50+
class="p-4 w-10 rounded-l-xl bg-base-3 flex flex-col gap-4 my-auto items-center justify-center pointer-events-auto z-0"
5151
transition:fly={{ duration: 150, easing: cubicInOut, x: "100%" }}
5252
>
5353
{@render penToolbar()}
5454
</div>
5555
{/if}
5656
</div>
5757
<div
58-
class="p-1 w-12 rounded-xl bg-base-1 flex flex-col gap-2 my-auto pointer-events-auto items-center justify-center z-10"
58+
class="p-1 w-12 rounded-xl bg-base-1 flex flex-col gap-1 my-auto pointer-events-auto items-center justify-center z-10"
5959
>
6060
<button
6161
class="aspect-square p-2 relative"
@@ -70,7 +70,7 @@
7070
<IconPencil />
7171
</button>
7272
<button
73-
class="aspect-square p-2"
73+
class="aspect-square p-2 flex items-center justify-center"
7474
onclick={() => {
7575
if (canvasManager.tool === "eraser") canvasManager.lockTool = true;
7676
else {

0 commit comments

Comments
 (0)