Format: update prettier configuration to use tailwind plugin

This commit is contained in:
Aaron William Po
2023-12-01 18:18:43 -05:00
parent 3de742f5e9
commit 30f2147566
50 changed files with 92 additions and 94 deletions

View File

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

View File

@@ -48,7 +48,7 @@ const ConfirmUserPage: FC = () => {
Your confirmation token is invalid or is expired.
</p>
<button
className="btn-outline btn-sm btn normal-case"
className="btn btn-outline btn-sm normal-case"
onClick={onClick}
type="button"
>

View File

@@ -41,10 +41,10 @@ const ForgotPasswordPage: NextPage<ForgotPasswordPageProps> = () => {
};
return (
<div className="flex flex-col items-center h-full">
<div className="xl:w-6/12 w-10/12 mt-64 text-center flex flex-col space-y-3">
<div className="flex h-full flex-col items-center">
<div className="mt-64 flex w-10/12 flex-col space-y-3 text-center xl:w-6/12">
<div className="space-y-1">
<div className="flex flex-col items-center justify-center my-2">
<div className="my-2 flex flex-col items-center justify-center">
<FaUserCircle className="text-3xl" />
<h1 className="text-3xl font-bold">Forgot Your Password?</h1>
</div>