fix: tour sidebar icons, auth pages scroll (#1555)

* fix: tour sidebar icons, menu button word wrap

* chore: change theme on sign out

* fix: auth pages scroll y-padding
This commit is contained in:
Aaryan Khandelwal 2023-07-18 19:02:33 +05:30 committed by GitHub
parent 07c097c9ad
commit 5ae963c451
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 34 additions and 52 deletions

View file

@ -45,7 +45,7 @@ Router.events.on("routeChangeComplete", NProgress.done);
function MyApp({ Component, pageProps }: AppProps) {
return (
// <UserProvider>
<ThemeProvider themes={THEMES} defaultTheme="light">
<ThemeProvider themes={THEMES} defaultTheme="dark">
<ToastContextProvider>
<ThemeContextProvider>
<CrispWithNoSSR />

View file

@ -138,18 +138,18 @@ const HomePage: NextPage = () => {
</div>
</div>
</>
<div className="grid place-items-center h-full overflow-y-auto px-7">
<div className="grid place-items-center h-full overflow-y-auto py-5 px-7">
<div>
{parseInt(process.env.NEXT_PUBLIC_ENABLE_OAUTH || "0") ? (
<>
<h1 className="text-center text-2xl sm:text-2.5xl font-semibold text-custom-text-100">
Sign in to Plane
</h1>
<div className="divide-y divide-custom-border-200">
<div className="flex flex-col divide-y divide-custom-border-200 sm:w-[360px] mx-auto">
<div className="pb-7">
<EmailCodeForm handleSignIn={handleEmailCodeSignIn} />
</div>
<div className="space-y-4 pt-7 w-full sm:w-[360px] mx-auto">
<div className="flex flex-col items-center justify-center gap-4 pt-7 overflow-hidden">
<GoogleLoginButton handleSignIn={handleGoogleSignIn} />
<GithubLoginButton handleSignIn={handleGitHubSignIn} />
</div>

View file

@ -100,7 +100,7 @@ const ResetPasswordPage: NextPage = () => {
</div>
</div>
</>
<div className="grid place-items-center h-full w-full overflow-y-auto px-7">
<div className="grid place-items-center h-full w-full overflow-y-auto py-5 px-7">
<div className="w-full">
<h1 className="text-center text-2xl sm:text-2.5xl font-semibold text-custom-text-100">
Reset your password

View file

@ -86,7 +86,7 @@ const SignUp: NextPage = () => {
</div>
</div>
</>
<div className="grid place-items-center h-full w-full overflow-y-auto px-7">
<div className="grid place-items-center h-full w-full overflow-y-auto py-5 px-7">
<div>
<EmailPasswordForm onSubmit={handleSignUp} />
</div>