Skip to content

Anchor the primary button on GettingStartedScene #5566

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

## Unreleased (develop)

- removed: Disable Fantom transaction list
- added: Add os version to the "OS" line of logs
- fixed: Primary button transforming on the animation on `GettingStartedScene`
- removed: Disable Fantom transaction list

## 4.27.0 (2025-05-08)

Expand Down
13 changes: 9 additions & 4 deletions src/components/scenes/GettingStartedScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,8 @@ export const GettingStartedScene = (props: Props) => {
// -----------------------------------------------------------------------------

const TertiaryTouchable = styled(EdgeTouchableOpacity)(theme => props => ({
marginVertical: theme.rem(0.5),
marginBottom: theme.rem(0.5),
marginTop: theme.rem(4.5),
alignItems: 'center'
}))

Expand Down Expand Up @@ -565,6 +566,10 @@ const Footnote = styled(EdgeText)(theme => ({
includeFontPadding: false
}))

const ButtonFadeContainer = styled(View)({
position: 'relative'
})
const ButtonFadeContainer = styled(View)(theme => ({
position: 'absolute',
bottom: theme.rem(3.25),
left: 0,
right: 0,
zIndex: 1
}))