Merge pull request #64 from WardPearce/fix/manage-sub-styling

Fixed button styling
This commit is contained in:
Ward
2024-04-07 13:33:34 +12:00
committed by GitHub
@@ -47,11 +47,9 @@
{#each subscriptions as sub}
<article>
<nav>
<a href={`/channel/${sub.authorId}`} class="link"><h6>{sub.author}</h6></a>
<a href={`/channel/${sub.authorId}`}><h6>{sub.author}</h6></a>
<div class="max"></div>
<button on:click={async () => unsubscribe(sub.authorId)} class="inverse-surface">
Unsubscribe
</button>
<button on:click={async () => unsubscribe(sub.authorId)} class="border"> Unsubscribe </button>
</nav>
</article>
{/each}