Skip to content

Improve login and signup UI responsiveness#311

Open
harish12-max wants to merge 2 commits into
GitMetricsLab:mainfrom
harish12-max:fix-signup-ui-192
Open

Improve login and signup UI responsiveness#311
harish12-max wants to merge 2 commits into
GitMetricsLab:mainfrom
harish12-max:fix-signup-ui-192

Conversation

@harish12-max
Copy link
Copy Markdown

@harish12-max harish12-max commented May 17, 2026

Description

This PR improves the login and signup pages by enhancing UI consistency and responsiveness.

Changes Made

  • Improved mobile responsiveness
  • Fixed spacing inconsistencies
  • Added smoother button hover effects
  • Improved padding for smaller screens
  • Made login/signup UI more visually consistent

Issue Fixed

Closes #192

Summary by CodeRabbit

Release Notes

  • New Features

    • Added hover animations to submit buttons with scale and shadow effects.
  • Style

    • Improved responsive padding on Login and Signup pages for optimized mobile and desktop display.

Review Change Stack

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 17, 2026

Warning

Rate limit exceeded

@harish12-max has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 41 minutes before requesting another review.

You’ve run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: dc9ea9f0-3ce1-434e-8afc-bf19ae2e8e83

📥 Commits

Reviewing files that changed from the base of the PR and between 94da3a4 and 8b40919.

📒 Files selected for processing (1)
  • src/pages/Login/Login.tsx
📝 Walkthrough

Walkthrough

Login and Signup authentication pages receive responsive padding adjustments and consistent button hover interactions. Outer containers and form/panel cards now scale padding based on screen size using Tailwind's responsive prefixes, and submit buttons on both pages gain hover animations with scale and shadow effects.

Changes

Authentication Page Responsive Styling Updates

Layer / File(s) Summary
Login page responsive layout and button interactions
src/pages/Login/Login.tsx
Outer container and form card padding become responsive (px-4 sm:px-6 and p-6 sm:p-10 respectively). Submit button gains hover scale and shadow effects. Footer wrapper adjusts from mt-8 pb-8 to text-center mt-8.
Signup page responsive layout and button interactions
src/pages/Signup/Signup.tsx
Main container and signup panel padding become responsive (sm: breakpoint variants). Submit button gains hover scale and shadow effects while preserving existing gradient and disabled-state classes.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Possibly related PRs

Suggested labels

gssoc25, level1, quality:clean

Poem

🐰 Hop, hop, padding flows so sweet,
Responsive screens from small to fleet,
Buttons dance on hover's grace,
Consistent style in every place!

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Linked Issues check ⚠️ Warning Changes address only padding/spacing improvements but do not fully address all three objectives from issue #192: logo visibility, gradient/background matching, and login navigation link. Add styling fixes for logo scroll cutoff, gradient/background matching with login page, and implement the 'Already have an account? Login' link.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed Title accurately summarizes the main changes: improving responsiveness of login and signup UI components.
Description check ✅ Passed Description follows template structure with sections on what was changed and issue closed, though 'How Has This Been Tested?' and explicit type change selection are missing.
Out of Scope Changes check ✅ Passed All changes are focused on UI improvements (padding, spacing, button hover effects) which are directly related to the responsiveness objectives.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@netlify
Copy link
Copy Markdown

netlify Bot commented May 17, 2026

Deploy Preview for github-spy ready!

Name Link
🔨 Latest commit 8b40919
🔍 Latest deploy log https://app.netlify.com/projects/github-spy/deploys/6a0a2d3cf8427300084ec1ad
😎 Deploy Preview https://deploy-preview-311--github-spy.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

Copy link
Copy Markdown

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉 Thank you @harish12-max for your contribution. Please make sure your PR follows https://github.com/GitMetricsLab/github_tracker/blob/main/CONTRIBUTING.md#-pull-request-guidelines

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/pages/Login/Login.tsx`:
- Line 143: The footer container in the Login component (the div currently using
className "text-center mt-8") was changed and now lacks the bottom padding that
the Signup footer still has ("mt-8 pb-8"), causing inconsistent spacing; fix
this by restoring the missing padding on the Login footer—add "pb-8" back into
the Login div's className (the element in the Login component currently
"text-center mt-8") so it matches the Signup footer, or alternatively remove
"pb-8" from the Signup footer div ("mt-8 pb-8") if you prefer the reduced
spacing—keep both footers consistent.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 38c16337-5e8e-4089-a16b-735d69f764c6

📥 Commits

Reviewing files that changed from the base of the PR and between 8d17610 and 94da3a4.

📒 Files selected for processing (2)
  • src/pages/Login/Login.tsx
  • src/pages/Signup/Signup.tsx

Comment thread src/pages/Login/Login.tsx Outdated
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

UI Issues on Signup Page (Scrolling, Color Mismatch, Missing Login Link)

1 participant