Skip to content

Commit

Permalink
fix: lcp
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <i@innei.in>
  • Loading branch information
Innei committed Jun 22, 2023
1 parent f6e1511 commit c004a7d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/ui/Transition/BottomToUpTransitionView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { createTransitionView } from './factor'
export const BottomToUpTransitionView = createTransitionView({
from: {
translateY: '3rem',
opacity: 0,
opacity: 0.0001,
},
to: {
translateY: 0,
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/Transition/FadeInOutTransitionView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const FadeInOutTransitionView: FC<
PropsWithChildren<BaseTransitionProps>
> = createTransitionView({
from: {
opacity: 0,
opacity: 0.0001,
},
to: {
opacity: 1,
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/Transition/LeftToRightTransitionView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { createTransitionView } from './factor'
export const LeftToRightTransitionView = createTransitionView({
from: {
translateX: '-5em',
opacity: 0,
opacity: 0.0001,
},
to: {
translateX: 0,
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/Transition/RightToLeftTransitionView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { createTransitionView } from './factor'
export const RightToLeftTransitionView = createTransitionView({
from: {
translateX: '3em',
opacity: 0,
opacity: 0.0001,
},
to: {
translateX: 0,
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/Transition/ScaleTransitionView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { createTransitionView } from './factor'
export const ScaleTransitionView = createTransitionView({
from: {
scale: 0,
opacity: 0,
opacity: 0.0001,
},
to: {
scale: 1,
Expand Down

1 comment on commit c004a7d

@vercel
Copy link

@vercel vercel bot commented on c004a7d Jun 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

kami – ./

kami-innei-dev.vercel.app
dev.innei.ren
kami-psi.vercel.app
kami-git-master-innei-dev.vercel.app

Please sign in to comment.