Skip to content

Commit

Permalink
fix: stop create account button disappearing at smaller heights, #4165
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Oct 13, 2023
1 parent 07989ae commit f166a31
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface CreateAccountActionProps {
}
export function CreateAccountAction({ onCreateAccount }: CreateAccountActionProps) {
return (
<Flex py="space.05" px="space.05" flexGrow="1">
<Flex py="space.05" px="space.05" flexGrow="1" position="fixed" bottom={0} width="100%">
<LeatherButton fullWidth onClick={() => onCreateAccount()}>
Create new account
</LeatherButton>
Expand Down

0 comments on commit f166a31

Please sign in to comment.