-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34958 from shahinyan11/issues/34529
Wrap the login page background image in a new container to fix it moving
- Loading branch information
Showing
5 changed files
with
31 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import type GetSignInBgStyles from './types'; | ||
|
||
const getSignInBgStyles: GetSignInBgStyles = (theme) => ({ | ||
backgroundColor: theme.signInPage, | ||
}); | ||
|
||
export default getSignInBgStyles; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import type GetSignInBgStyles from './types'; | ||
|
||
const getSignInBgStyles: GetSignInBgStyles = () => ({}); | ||
|
||
export default getSignInBgStyles; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import type {ViewStyle} from 'react-native'; | ||
import type {ThemeColors} from '@styles/theme/types'; | ||
|
||
type GetSignInBgStyles = (theme: ThemeColors) => ViewStyle; | ||
|
||
export default GetSignInBgStyles; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters