Add Dockerfile and .dockerignore, update log page layout

This commit is contained in:
Sean Morley
2024-03-30 21:30:22 +00:00
parent b1840006f0
commit 9d5fbf00ad
3 changed files with 33 additions and 3 deletions

View File

@@ -69,9 +69,6 @@
<button class="btn" on:click={createNewAdventure}>Add Adventure</button>
</div>
<div class="grid grid-cols-3 gap-4 mt-4 content-center auto-cols-auto ml-6">
{#each adventures as adventure (adventure.id)}
<AdventureCard id={adventure.id} name={adventure.name} location={adventure.location} created={adventure.created} on:remove={triggerRemoveAdventure} on:edit={editAdventure} />