Skip to content

Commit

Permalink
Merge pull request #206 from tarunkumar2005/arrow-fix
Browse files Browse the repository at this point in the history
Fixed the postion of the arrow
  • Loading branch information
dhairyagothi authored Oct 12, 2024
2 parents 8b05ddf + fd9b4c5 commit c733e59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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

0 comments on commit c733e59

Please sign in to comment.