Merge branch 'master' of github.com:benallfree/pockethost

This commit is contained in:
Ben Allfree 2023-12-27 15:09:52 +00:00
commit ebd2b218d4
2 changed files with 7 additions and 11 deletions

View File

@ -59,9 +59,7 @@
</MediaQuery> </MediaQuery>
<div class="flex flex-col gap-2 mb-auto h-full"> <div class="flex flex-col gap-2 mb-auto h-full">
<div class="mt-16"> <SubscriptionStatus {handleClick} />
<SubscriptionStatus {handleClick} />
</div>
<a on:click={handleClick} href="/" class={linkClasses}> <a on:click={handleClick} href="/" class={linkClasses}>
<i <i

View File

@ -51,16 +51,14 @@
<th scope="col"> <th scope="col">
<span class="sr-only">Feature</span> <span class="sr-only">Feature</span>
</th> </th>
<th scope="col"> <th scope="col" class="text-center">
<span class="sr-only">Starter tier</span> {PLAN_NAMES[SubscriptionType.Free]}
</th> </th>
<th scope="col"> <th scope="col" class="text-center">
<span class="sr-only">Scale tier</span> {PLAN_NAMES[SubscriptionType.Premium]}
</th> </th>
<th scope="col"> <th scope="col" class="text-center">
<span class="sr-only" {PLAN_NAMES[SubscriptionType.Lifetime]}
>{PLAN_NAMES[SubscriptionType.Lifetime]} tier</span
>
</th> </th>
</tr> </tr>
</thead> </thead>