Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Collection50 committed Aug 30, 2024
1 parent 0fc6159 commit 424515c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 7 additions & 2 deletions src/app/login/components/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,13 @@ export function Login() {
y: 0,
}}
exit={{
opacity: 0,
x: -120,
opacity: [1, 1, 0],
scale: [1, 1.05, 0],
transition: {
duration: 0.7,
times: [0, 0.3, 1],
ease: 'easeInOut',
},
}}
transition={{ duration: 1 }}
className="w-552 h-604 p-68 pt-116 flex flex-col justify-between rounded-30 bg-[white]">
Expand Down
8 changes: 6 additions & 2 deletions src/app/login/components/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,12 @@ export default function Select() {
x: 0,
}}
exit={{
opacity: 0,
scale: 0,
opacity: [1, 0.9, 0],
y: [0, 30, -500],
transition: {
duration: 0.6,
times: [0, 0.4, 1],
},
}}
transition={{ duration: 0.6, ease: 'easeOut' }}
className="w-552 h-604 p-68 pt-116 flex flex-col justify-center gap-56 rounded-30 bg-[white]">
Expand Down

0 comments on commit 424515c

Please sign in to comment.