fix: fix toast style by shifting close icon, fix installation issues

This commit is contained in:
Aaron William Po
2023-06-01 21:01:04 -04:00
parent b644e7eeee
commit 81cb95391a
2 changed files with 4 additions and 3 deletions

View File

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

View File

@@ -1,3 +1,4 @@
{ {
"buildCommand": "npx prisma generate && npx prisma migrate deploy && next build" "buildCommand": "npx prisma generate && npx prisma migrate deploy && next build",
"installCommand": "npm install --legacy-peer-deps"
} }