make dashboard profile pages more responsived
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 1m3s

This commit is contained in:
Braydon 2024-09-22 21:22:50 -04:00
parent ec7e1e4b76
commit 2e40f5bacf
3 changed files with 3 additions and 3 deletions

@ -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 */}