Added table names on desktop to Pricing Table (#353)

This commit is contained in:
Brewhouse Digital 2023-12-26 10:44:19 -06:00 committed by GitHub
parent 69d7536e2b
commit 8a960e79c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 11 deletions

View File

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

View File

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