Skip to content

Commit

Permalink
feat: add bottom padding on deploy package view
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractFruitFactory committed Dec 20, 2022
1 parent 647c5c4 commit 66f768a
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions src/components/deploy-package/DeployPackage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -183,17 +183,19 @@
</Text>
</Box>

<Button
disabled={!deployButtonEnabled}
on:click={() => send({ type: 'DEPLOY' })}
>
{#if $state.matches(// @ts-ignore
{ connected: { 'deploying-package': 'deploy' } })}
<LoadingSpinner />
{:else}
Deploy package
{/if}
</Button>
<Box transparent px="none" mx="none">
<Button
disabled={!deployButtonEnabled}
on:click={() => send({ type: 'DEPLOY' })}
>
{#if $state.matches(// @ts-ignore
{ connected: { 'deploying-package': 'deploy' } })}
<LoadingSpinner />
{:else}
Deploy package
{/if}
</Button>
</Box>
{/if}
</center>
{/if}

0 comments on commit 66f768a

Please sign in to comment.