Fix: additional style updates

This commit is contained in:
Aaron William Po
2023-11-26 21:43:21 -05:00
parent 7605e59d10
commit c0d90a84d8
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ const CustomToast: FC<{ children: ReactNode }> = ({ children }) => {
const alertType = toastToClassName(t.type); const alertType = toastToClassName(t.type);
return ( return (
<div <div
className={`alert ${alertType} flex w-full items-start justify-between shadow-lg animate-in fade-in duration-200 lg:w-3/12`} className={`alert ${alertType} flex w-full items-start justify-between shadow-lg animate-in fade-in duration-200 lg:w-4/12`}
> >
<p className="w-full text-left">{resolveValue(t.message, t)}</p> <p className="w-full text-left">{resolveValue(t.message, t)}</p>
{t.type !== 'loading' && ( {t.type !== 'loading' && (

View File

@@ -36,7 +36,7 @@ const UserInfoPage: FC<UserInfoPageProps> = ({ user }) => {
<meta name="description" content="User information" /> <meta name="description" content="User information" />
</Head> </Head>
<> <>
<main className="h-full mb-12 mt-10 flex w-full items-center justify-center"> <main className="mb-12 mt-10 flex w-full items-center justify-center">
<div className="h-full w-11/12 space-y-3 xl:w-9/12 2xl:w-8/12"> <div className="h-full w-11/12 space-y-3 xl:w-9/12 2xl:w-8/12">
<UserHeader <UserHeader
user={user} user={user}