Skip to content

Commit

Permalink
Fix: slightly reduced padding from top
Browse files Browse the repository at this point in the history
  • Loading branch information
Akalanka47000 committed Oct 14, 2023
1 parent 649aae5 commit da287ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const App = () => {
<Header />
<motion.main
key={location.pathname}
className="w-full max-w-body mx-auto px-8 lg:px-24 flex flex-col items-center relative z-[5] font-inter break-words overflow-x-hidden pt-[calc(70px+64px)] xs:pt-[calc(90px+64px)] pb-[64px]"
className="w-full max-w-body mx-auto px-8 lg:px-24 flex flex-col items-center relative z-[5] font-inter break-words overflow-x-hidden pt-[calc(70px+64px)] xs:pt-[calc(86px+64px)] pb-[64px]"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0, transition: { duration: 0.3 } }}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/auth/forgot-password.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const ForgotPassword = () => {
<Button className="w-full h-14 sm:h-16 text-[20px] mt-6" loading={isLoading}>
Send
</Button>
<span>
<span className="text-center">
<Caption className="text-black/40 mr-1.5">Remembered your password?</Caption>
<Link to="/login">
<Caption className="link">Login</Caption>
Expand Down

0 comments on commit da287ec

Please sign in to comment.