Update create app modal button style
This commit is contained in:
parent
e264277996
commit
cb803b1abf
|
@ -162,14 +162,14 @@
|
||||||
<Button medium secondary on:click={() => $currentStep--}>Back</Button>
|
<Button medium secondary on:click={() => $currentStep--}>Back</Button>
|
||||||
{/if}
|
{/if}
|
||||||
{#if $currentStep < steps.length - 1}
|
{#if $currentStep < steps.length - 1}
|
||||||
<Button medium blue on:click={() => $currentStep++} disabled={!valid}>
|
<Button medium cta on:click={() => $currentStep++} disabled={!valid}>
|
||||||
Next
|
Next
|
||||||
</Button>
|
</Button>
|
||||||
{/if}
|
{/if}
|
||||||
{#if $currentStep === steps.length - 1}
|
{#if $currentStep === steps.length - 1}
|
||||||
<Button
|
<Button
|
||||||
medium
|
medium
|
||||||
blue
|
cta
|
||||||
on:click={createNewApp}
|
on:click={createNewApp}
|
||||||
disabled={!valid || submitting}>
|
disabled={!valid || submitting}>
|
||||||
{submitting ? 'Loading...' : 'Submit'}
|
{submitting ? 'Loading...' : 'Submit'}
|
||||||
|
|
Loading…
Reference in New Issue