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

Fixed the postion of the arrow #206

Merged
merged 1 commit into from
Oct 12, 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: 3 additions & 1 deletion frontend/src/Pages/LoginPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ const Login = () => {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-gradient-to-b from-blue-100 to-blue-5000">
{/* Logo and Title */}
<div><button onClick={HomeClick}><img src={backicon} alt="" srcSet="" className='fixed left-[1vh] h-[9vh] w-auto' /></button></div>
<button onClick={HomeClick} className='absolute left-0 top-0'>
<img src={backicon} alt="" className='h-[9vh]' />
</button>
<div className="mb-10 text-center">
<img src={logo} alt="Station Saarthi Logo" className="w-20 mx-auto h-22" />
<h1 className="mt-4 text-4xl font-bold text-gray-800">Station Saarthi</h1>
Expand Down
8 changes: 3 additions & 5 deletions frontend/src/Pages/Register.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,9 @@ const Register = () => {
</div>
)}

<div>
<button onClick={HomeClick}>
<img src={backicon} alt="" className='fixed left-[1vh] h-[9vh] w-auto' />
</button>
</div>
<button onClick={HomeClick} className='absolute left-0 top-0'>
<img src={backicon} alt="" className='h-[9vh]' />
</button>
<div className="mb-6 text-center">
<img src={logo} alt="Station Saarthi Logo" className="w-20 mx-auto mb-2 h-22" />
<h1 className="text-2xl font-bold text-gray-800">Station Saarthi</h1>
Expand Down
Loading