diff --git a/components/ui/themes/DefaultTheme.ts b/components/ui/themes/DefaultTheme.ts index 7ebc9d75fb..1c96af4605 100644 --- a/components/ui/themes/DefaultTheme.ts +++ b/components/ui/themes/DefaultTheme.ts @@ -1160,17 +1160,22 @@ export const DefaultTheme = { issuersSearchBar: { borderWidth: 1, borderColor: Colors.Gray50, - height: Dimensions.get('window').height * 0.06, - width: Dimensions.get('window').width * 0.85, - paddingLeft: 15, + height: Dimensions.get('window').height * 0.055, + width: Dimensions.get('window').width * 0.84, + paddingLeft: 12, + borderLeftWidth: 0, borderTopRightRadius: 9, borderBottomRightRadius: 9, }, searchIcon: { justifyContent: 'center', - backgroundColor: Colors.Gray50, - height: Dimensions.get('window').height * 0.06, + paddingLeft: 15, + height: Dimensions.get('window').height * 0.055, width: Dimensions.get('window').width * 0.1, + borderColor: Colors.Gray50, + borderTopWidth: 1, + borderBottomWidth: 1, + borderLeftWidth: 1, borderTopLeftRadius: 9, borderBottomLeftRadius: 9, }, diff --git a/components/ui/themes/PurpleTheme.ts b/components/ui/themes/PurpleTheme.ts index e5e7a2b5d5..097bec9e04 100644 --- a/components/ui/themes/PurpleTheme.ts +++ b/components/ui/themes/PurpleTheme.ts @@ -1162,17 +1162,22 @@ export const PurpleTheme = { issuersSearchBar: { borderWidth: 1, borderColor: Colors.Gray50, - height: Dimensions.get('window').height * 0.06, - width: Dimensions.get('window').width * 0.85, - paddingLeft: 15, + height: Dimensions.get('window').height * 0.055, + width: Dimensions.get('window').width * 0.84, + paddingLeft: 12, + borderLeftWidth: 0, borderTopRightRadius: 9, borderBottomRightRadius: 9, }, searchIcon: { justifyContent: 'center', backgroundColor: Colors.Gray50, - height: Dimensions.get('window').height * 0.06, + height: Dimensions.get('window').height * 0.055, width: Dimensions.get('window').width * 0.1, + borderColor: Colors.Gray50, + borderTopWidth: 1, + borderBottomWidth: 1, + borderLeftWidth: 1, borderTopLeftRadius: 9, borderBottomLeftRadius: 9, }, diff --git a/screens/Issuers/IssuersScreen.tsx b/screens/Issuers/IssuersScreen.tsx index 266e137cd5..f78fbea8fd 100644 --- a/screens/Issuers/IssuersScreen.tsx +++ b/screens/Issuers/IssuersScreen.tsx @@ -161,8 +161,8 @@ export const IssuersScreen: React.FC< - + {controller.issuers.length > 0 && ( item.id} /> )} - + )}