diff --git a/packages/billing/gateway/src/components/pricing-table.tsx b/packages/billing/gateway/src/components/pricing-table.tsx
index 1e0f4c6a3..9c9b967d9 100644
--- a/packages/billing/gateway/src/components/pricing-table.tsx
+++ b/packages/billing/gateway/src/components/pricing-table.tsx
@@ -18,6 +18,7 @@ import { Badge } from '@kit/ui/badge';
import { Button } from '@kit/ui/button';
import { Heading } from '@kit/ui/heading';
import { If } from '@kit/ui/if';
+import { Separator } from '@kit/ui/separator';
import { Trans } from '@kit/ui/trans';
import { cn } from '@kit/ui/utils';
@@ -60,7 +61,7 @@ export function PricingTable({
{config.products.map((product) => {
@@ -151,10 +152,11 @@ function PricingItem(
data-cy={'subscription-plan'}
className={cn(
props.className,
- `s-full flex flex-1 grow flex-col items-stretch
- justify-between space-y-8 self-stretch p-6 lg:w-4/12 xl:max-w-[22rem] xl:p-8`,
+ `s-full bg-background flex flex-1 grow flex-col items-stretch justify-between space-y-8 self-stretch
+ rounded-lg border border-transparent p-6 lg:w-4/12 xl:max-w-[22rem] xl:p-8`,
{
['border-primary']: highlighted,
+ ['dark:shadow-primary/20 shadow dark:shadow-sm']: !highlighted,
},
)}
>
@@ -214,7 +216,7 @@ function PricingItem(
`animate-in slide-in-from-left-4 fade-in flex items-center space-x-0.5 capitalize`,
)}
>
-
+
}
@@ -251,6 +253,28 @@ function PricingItem(
+
+
+ }
+ >
+ {(CheckoutButton) => (
+
+ )}
+
+
+
+
+
@@ -276,23 +300,6 @@ function PricingItem(
-
-