Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Register and forget password page scrolling issue fixed #500

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/forgot_password.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-white">
<div class="relative flex items-top justify-center min-h-[700px] bg-white sm:items-center sm:pt-0">
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
<div class="relative flex items-top justify-center min-h-screen bg-white sm:items-center sm:pt-0">
<div class="w-5/6 mx-auto sm:px-6 lg:px-8">
<div class="mt-8 overflow-hidden">
<div class="grid grid-cols-1 md:grid-cols-2">
<div class="hidden lg:block p-6 mr-2 bg-gray-100 sm:rounded-lg">
Expand Down
4 changes: 2 additions & 2 deletions client/register.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

<body class="bg-white">

<div class="relative flex items-top justify-center min-h-[700px] bg-white sm:items-center sm:pt-0">
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
<div class="relative flex items-top justify-center min-h-screen bg-white sm:items-center sm:pt-0">
<div class="w-5/6 mx-auto sm:px-6 lg:px-8">
<div class="mt-8 overflow-hidden">
<div class="grid grid-cols-1 md:grid-cols-2">
<div class="hidden lg:block p-6 mr-2 bg-gray-100 sm:rounded-lg">
Expand Down