make dashboard profile pages more responsived
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 1m3s
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 1m3s
This commit is contained in:
parent
ec7e1e4b76
commit
2e40f5bacf
@ -10,7 +10,7 @@ import DashboardHeader from "@/components/dashboard/dashboard-header";
|
|||||||
* @return the page jsx
|
* @return the page jsx
|
||||||
*/
|
*/
|
||||||
const UserBillingPage = (): ReactElement => (
|
const UserBillingPage = (): ReactElement => (
|
||||||
<main className="w-[47rem] flex flex-col gap-5">
|
<main className="max-w-[47rem] flex flex-col gap-5">
|
||||||
<DashboardHeader title="Billing" />
|
<DashboardHeader title="Billing" />
|
||||||
|
|
||||||
{/* Content */}
|
{/* Content */}
|
||||||
|
@ -14,7 +14,7 @@ import DashboardHeader from "@/components/dashboard/dashboard-header";
|
|||||||
* @return the page jsx
|
* @return the page jsx
|
||||||
*/
|
*/
|
||||||
const UserProfilePage = (): ReactElement => (
|
const UserProfilePage = (): ReactElement => (
|
||||||
<main className="w-[47rem] flex flex-col gap-5">
|
<main className="max-w-[47rem] flex flex-col gap-5">
|
||||||
<DashboardHeader title="My Profile" />
|
<DashboardHeader title="My Profile" />
|
||||||
|
|
||||||
{/* Content */}
|
{/* Content */}
|
||||||
|
@ -12,7 +12,7 @@ import DashboardHeader from "@/components/dashboard/dashboard-header";
|
|||||||
* @return the page jsx
|
* @return the page jsx
|
||||||
*/
|
*/
|
||||||
const UserSettingsPage = (): ReactElement => (
|
const UserSettingsPage = (): ReactElement => (
|
||||||
<main className="w-[47rem] flex flex-col gap-5">
|
<main className="max-w-[47rem] flex flex-col gap-5">
|
||||||
<DashboardHeader title="Settings" />
|
<DashboardHeader title="Settings" />
|
||||||
|
|
||||||
{/* Content */}
|
{/* Content */}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user