mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
Fix: additional style updates
This commit is contained in:
@@ -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' && (
|
||||||
|
|||||||
@@ -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}
|
||||||
|
|||||||
Reference in New Issue
Block a user