Update CSS classes in billing pages
The CSS classes in the billing pages of both the account and user sections have been modified. The 'mx-auto' class, which previously applied automatic horizontal margins to the elements, has been removed to adjust the layout.
This commit is contained in:
@@ -61,9 +61,7 @@ async function PersonalAccountBillingPage() {
|
||||
|
||||
<If condition={data}>
|
||||
{(data) => (
|
||||
<div
|
||||
className={'mx-auto flex w-full max-w-2xl flex-col space-y-6'}
|
||||
>
|
||||
<div className={'flex w-full max-w-2xl flex-col space-y-6'}>
|
||||
{'active' in data ? (
|
||||
<CurrentSubscriptionCard
|
||||
subscription={data}
|
||||
|
||||
@@ -82,7 +82,7 @@ async function TeamAccountBillingPage({ params }: Params) {
|
||||
<PageBody>
|
||||
<div
|
||||
className={cn(`flex w-full flex-col space-y-4`, {
|
||||
'mx-auto max-w-2xl': data,
|
||||
'max-w-2xl': data,
|
||||
})}
|
||||
>
|
||||
<If
|
||||
|
||||
Reference in New Issue
Block a user