Skip to content

Commit 804f433

Browse files
committed
Updated divider color in subscription card
1 parent aa13b47 commit 804f433

File tree

2 files changed

+4
-4
lines changed
  • apps/payments/next/app/[locale]/subscriptions/manage
  • libs/payments/ui/src/lib/client/components/SubscriptionContent

2 files changed

+4
-4
lines changed

apps/payments/next/app/[locale]/subscriptions/manage/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ export default async function Manage({
667667
{nextBillDate && (
668668
<>
669669
<div
670-
className="border-none h-px bg-grey-200 my-2"
670+
className="border-none h-px bg-grey-100 my-2"
671671
role="separator"
672672
aria-hidden="true"
673673
></div>
@@ -802,7 +802,7 @@ export default async function Manage({
802802
{!!purchase.expiryTimeMillis && (
803803
<>
804804
<div
805-
className="border-none h-px bg-grey-200 my-2"
805+
className="border-none h-px bg-grey-100 my-2"
806806
role="separator"
807807
aria-hidden="true"
808808
></div>

libs/payments/ui/src/lib/client/components/SubscriptionContent/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ export const SubscriptionContent = ({
531531
{canResubscribe ? (
532532
<>
533533
<div
534-
className="border-none h-px bg-grey-200 my-2"
534+
className="border-none h-px bg-grey-100 my-2"
535535
role="separator"
536536
aria-hidden="true"
537537
></div>
@@ -562,7 +562,7 @@ export const SubscriptionContent = ({
562562
{nextInvoiceTotal !== undefined && nextInvoiceTotal >= 0 ? (
563563
<>
564564
<div
565-
className="border-none h-px bg-grey-200 my-2"
565+
className="border-none h-px bg-grey-100 my-2"
566566
role="separator"
567567
aria-hidden="true"
568568
></div>

0 commit comments

Comments
 (0)