Skip to content

Commit

Permalink
Fix images and some FE fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymmmy committed Dec 5, 2024
1 parent 3220751 commit 3d66d5d
Show file tree
Hide file tree
Showing 23 changed files with 11 additions and 11 deletions.
Binary file modified packages/wallet/frontend/public/bird-envelope-dark.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/bird-envelope-light.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/bird-error-dark.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/bird-error-light.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/grants-dark.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/grants-light.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/login-dark.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/login-light.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/login-mobile-dark.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/login-mobile-light.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/park-dark.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/park-light.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/people-dark.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/people-light.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/register-dark.webp
Binary file not shown.
Binary file modified packages/wallet/frontend/public/register-light.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/wallet/frontend/src/components/GrantDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type GrantDetailsProps = { grant: GrantResponse }

export const GrantDetails = ({ grant }: GrantDetailsProps) => {
return (
<div className="flex flex-col sm:my-10">
<div className="flex flex-col my-6">
<div className="text-xl">
<span className="font-semibold">Client: </span>
<span className="font-light">{grant.client}</span>
Expand Down
4 changes: 2 additions & 2 deletions packages/wallet/frontend/src/pages/auth/forgot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ const ForgotPasswordPage: NextPageWithLayout = () => {
</Form>
</div>
<Image
className="mt-auto object-cover md:hidden"
className="mt-10 object-cover md:hidden"
src={imageName}
alt="Forgot password"
quality={100}
width={400}
height={200}
/>
<p className="mt-auto text-center font-extralight text-green dark:text-green-neon">
<p className="mt-10 text-center font-extralight text-green dark:text-green-neon">
Remembered your credentials?{' '}
<Link href="login" className="font-medium underline">
Login
Expand Down
4 changes: 2 additions & 2 deletions packages/wallet/frontend/src/pages/auth/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ const WelcomePage: NextPageWithLayout = () => {
Create account
</Button>
<Image
className="mt-auto object-cover md:hidden"
className="mt-10 object-cover md:hidden"
src={imageName}
alt="Welcome"
quality={100}
width={400}
height={200}
/>
<p className="mt-auto font-extralight text-green dark:text-green-neon">
<p className="mt-10 font-extralight text-green dark:text-green-neon">
About{' '}
<Link href="https://interledger.org" className="font-medium underline">
Interledger
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/frontend/src/pages/auth/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const LoginPage: NextPageWithLayout = () => {
</p>
</div>
<Image
className="mt-auto object-cover md:hidden"
className="mt-10 object-cover md:hidden"
src={imageName}
alt="Login"
quality={100}
Expand Down
4 changes: 2 additions & 2 deletions packages/wallet/frontend/src/pages/auth/reset/[token].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@ const ResetPasswordPage: NextPageWithLayout<ResetPasswordPageProps> = ({
)}

<Image
className="mt-auto object-cover md:hidden"
className="mt-10 object-cover md:hidden"
src={imageName}
alt="Forgot password"
quality={100}
width={400}
height={200}
/>
<p className="mt-auto text-center font-extralight text-green dark:text-green-neon">
<p className="mt-10 text-center font-extralight text-green dark:text-green-neon">
Remembered your credentials?{' '}
<Link href="/auth/login" className="font-medium underline">
Login
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/frontend/src/pages/auth/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ const SignUpPage: NextPageWithLayout = () => {
)}
></div>
)}
<p className="z-10 mt-auto text-center font-extralight text-green dark:text-green-neon">
<p className="z-10 mt-10 text-center font-extralight text-green dark:text-green-neon">
Already a customer?{' '}
<Link href="login" className="font-medium underline">
Log in
Expand Down
4 changes: 2 additions & 2 deletions packages/wallet/frontend/src/pages/auth/verify/[token].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ const VerifyEmailPage: NextPageWithLayout<VerifyEmailPageProps> = ({
)}

<Image
className="mt-auto object-cover md:hidden"
className="mt-10 object-cover md:hidden"
src={imageName}
alt="Verify email"
quality={100}
width={400}
height={200}
/>
<p className="mt-auto text-center font-extralight text-green dark:text-green-neon">
<p className="mt-10 text-center font-extralight text-green dark:text-green-neon">
Have an account? Continue to{' '}
<Link href="/auth/login" className="font-medium underline">
Login
Expand Down

0 comments on commit 3d66d5d

Please sign in to comment.