Merge pull request #64 from WardPearce/fix/manage-sub-styling
Fixed button styling
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user