Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions apps/payments/next/app/[locale]/subscriptions/manage/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -533,9 +533,9 @@ export default async function Manage({
aria-labelledby={`${sub.productName}-information`}
className="leading-6 pb-4"
>
<div className="w-full py-1 text-grey-600 rounded-lg border-2 border-[#E0E0E6] bg-white">
<div className="flex flex-col p-4 tablet:flex-row tablet:items-start tablet:px-6">
<div className="tablet:min-w-[140px]">
<div className="w-full py-6 text-grey-600 bg-white rounded-xl border border-grey-200 opacity-100 shadow-[0_0_16px_0_rgba(0,0,0,0.08)] tablet:px-6 tablet:py-8">
<div className="flex flex-col px-4 tablet:px-0 tablet:flex-row tablet:items-start">
<div className="tablet:min-w-[160px]">
<Image
src={sub.webIcon}
alt={sub.productName}
Expand Down Expand Up @@ -612,9 +612,9 @@ export default async function Manage({
aria-labelledby={`${purchase.productName}-heading`}
className="leading-6 pb-4"
>
<div className="w-full py-1 text-grey-600 rounded-lg border-2 border-[#E0E0E6] bg-white">
<div className="flex flex-col p-4 tablet:flex-row tablet:items-start tablet:px-6">
<div className="tablet:min-w-[140px]">
<div className="w-full py-6 text-grey-600 bg-white rounded-xl border border-grey-200 opacity-100 shadow-[0_0_16px_0_rgba(0,0,0,0.08)] tablet:px-6 tablet:py-8">
<div className="flex flex-col px-4 tablet:px-0 tablet:flex-row tablet:items-start">
<div className="tablet:min-w-[160px]">
<Image
src={purchase.webIcon}
alt={purchase.productName}
Expand Down Expand Up @@ -667,7 +667,7 @@ export default async function Manage({
{nextBillDate && (
<>
<div
className="border-none h-px bg-grey-200 my-2"
className="border-none h-px bg-grey-100 my-2"
role="separator"
aria-hidden="true"
></div>
Expand Down Expand Up @@ -747,9 +747,9 @@ export default async function Manage({
aria-labelledby={`${purchase.productName}-heading`}
className="leading-6 pb-4"
>
<div className="w-full py-1 text-grey-600 rounded-lg border-2 border-[#E0E0E6] bg-white">
<div className="flex flex-col p-4 tablet:flex-row tablet:items-start tablet:px-6">
<div className="tablet:min-w-[140px]">
<div className="w-full py-6 text-grey-600 bg-white rounded-xl border border-grey-200 opacity-100 shadow-[0_0_16px_0_rgba(0,0,0,0.08)] tablet:px-6 tablet:py-8">
<div className="flex flex-col px-4 tablet:px-0 tablet:flex-row tablet:items-start">
<div className="tablet:min-w-[160px]">
<Image
src={purchase.webIcon}
alt={purchase.productName}
Expand Down Expand Up @@ -802,7 +802,7 @@ export default async function Manage({
{!!purchase.expiryTimeMillis && (
<>
<div
className="border-none h-px bg-grey-200 my-2"
className="border-none h-px bg-grey-100 my-2"
role="separator"
aria-hidden="true"
></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export default async function PaypalPaymentManagementPage({
'Manage payment methods'
)}
</h1>
<div className="py-6 text-grey-600 bg-white rounded-xl border border-grey-200 opacity-100 shadow-[0_0_16px_0_rgba(0,0,0,0.08)] tablet:px-6 tablet:py-8">
<div className="flex flex-col items-center text-center pb-8 mt-5 desktop:mt-2">
<div className="w-full py-6 text-grey-600 bg-white rounded-xl border border-grey-200 opacity-100 shadow-[0_0_16px_0_rgba(0,0,0,0.08)] tablet:px-6 tablet:py-8">
<div className="flex flex-col items-center text-center">
<Image
src={errorIcon}
alt=""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export function PaymentMethodManagement({
'Manage payment methods'
)}
</h1>
<div className="w-full py-6 text-grey-600 bg-white rounded-[12px] border border-grey-200 opacity-100 shadow-[0_0_16px_0_rgba(0,0,0,0.08)]">
<div className="w-full py-6 text-grey-600 bg-white rounded-xl border border-grey-200 opacity-100 shadow-[0_0_16px_0_rgba(0,0,0,0.08)] tablet:px-6 tablet:py-8">
{!isReady && (
<div className="w-full flex bg-white bg-opacity-75 items-center justify-center">
<LoadingSpinner className="h-10 w-10" />
Expand All @@ -204,7 +204,7 @@ export function PaymentMethodManagement({
<Form.Root
ref={formRef}
onSubmit={handleSubmit}
className="px-4 tablet:px-6"
className="px-4 tablet:px-0"
>
{isInputNewCardDetails && (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ export const SubscriptionContent = ({
{canResubscribe ? (
<>
<div
className="border-none h-px bg-grey-200 my-2"
className="border-none h-px bg-grey-100 my-2"
role="separator"
aria-hidden="true"
></div>
Expand Down Expand Up @@ -562,7 +562,7 @@ export const SubscriptionContent = ({
{nextInvoiceTotal !== undefined && nextInvoiceTotal >= 0 ? (
<>
<div
className="border-none h-px bg-grey-200 my-2"
className="border-none h-px bg-grey-100 my-2"
role="separator"
aria-hidden="true"
></div>
Expand Down