Skip to content

Commit

Permalink
fix(ramp): loading fox position
Browse files Browse the repository at this point in the history
  • Loading branch information
wachunei committed Mar 12, 2024
1 parent d47b4ab commit 033892b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1247,6 +1247,7 @@ exports[`Quotes renders animation on first fetching 1`] = `
pointerEvents="none"
style={
Object {
"alignSelf": "center",
"height": 260,
"width": 260,
}
Expand Down
5 changes: 2 additions & 3 deletions app/components/UI/Ramp/components/LoadingAnimation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ const createStyles = (
foxContainer: {
width: STAGE_SIZE,
height: STAGE_SIZE,
alignSelf: 'center',
},
});

Expand Down Expand Up @@ -161,9 +162,7 @@ function LoadingAnimation({
return (
<View style={styles.screen}>
<View style={styles.content}>
<>
<Title centered>{title}</Title>
</>
<Title centered>{title}</Title>

<View style={styles.progressWrapper}>
<Animated.View style={[styles.progressBar, progressStyle]} />
Expand Down

0 comments on commit 033892b

Please sign in to comment.