Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Commit

Permalink
Fixed secondaryButtonRoot margin
Browse files Browse the repository at this point in the history
  • Loading branch information
dilan-dio4 committed Jun 4, 2021
1 parent 7e4fb6b commit 41b50a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion native-example/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2897,7 +2897,7 @@
"version" "0.1.2"

"easybase-react@github:easybase/easybase-react#dev":
"resolved" "git+ssh://git@github.com/easybase/easybase-react.git#856a383638c63507f78e3eae2e6e5d54a1851460"
"resolved" "git+ssh://git@github.com/easybase/easybase-react.git#7e4fb6b8d4505574563c3d45c87d23a47831992d"
"version" "2.1.15"
dependencies:
"easybasejs" "4.2.13"
Expand Down
2 changes: 1 addition & 1 deletion src/ui/NativeAuth/components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export const Input = styled.TextInput((props: any) => ({
const SecondaryButtonRoot = styled.TouchableOpacity((props: any) => ({
backgroundColor: 'transparent',
height: 35,
marginBottom: -35,
overflow: "visible",
...(props.theme.secondaryButtonRoot ? { ...props.theme.secondaryButtonRoot } : {})
}))
Expand All @@ -88,6 +87,7 @@ export const SecondaryButton = (props: any) => <SecondaryButtonRoot {...props}><

const ForgotButtonRoot = styled(SecondaryButtonRoot)((props: any) => ({
width: "100%",
marginBottom: -35,
...(props.theme.forgotPasswordRoot ? { ...props.theme.forgotPasswordRoot } : {})
}))

Expand Down

0 comments on commit 41b50a2

Please sign in to comment.