update empty state

This commit is contained in:
Torsten Dittmann
2022-03-14 19:39:06 +01:00
parent 5ba34a38f5
commit c36dafeba3
+4 -6
View File
@@ -61,12 +61,10 @@
</svelte:fragment>
</ListItem>
{:else}
<div class="grid">
<div>
<h4>No Platforms Added to Your Project</h4>
<p>Add your first platform and build your new application.</p>
</div>
</div>
<Card>
<b>No Platforms Added to Your Project</b>
<p>Add your first platform and build your new application.</p>
</Card>
{/each}
<Button on:click={() => (addPlatform = true)}>Add Platform</Button>
<CreatePlatform bind:show={addPlatform} />