diff --git a/src/components/AddressSearch.js b/src/components/AddressSearch.js index 808fd3af66af..fe863ddd1529 100644 --- a/src/components/AddressSearch.js +++ b/src/components/AddressSearch.js @@ -94,14 +94,18 @@ class AddressSearch extends React.Component { }} styles={{ textInputContainer: [styles.flexColumn], - listView: [styles.borderTopRounded, styles.borderBottomRounded, styles.mt4, styles.overflowAuto], + listView: [ + styles.borderTopRounded, + styles.borderBottomRounded, + styles.mt4, + styles.overflowAuto, + styles.borderLeft, + styles.borderRight, + ], row: [ styles.pv4, styles.ph3, - styles.borderLeft, - styles.borderRight, styles.overflowAuto, - styles.googleSearchRow, ], description: [styles.googleSearchText], separator: [styles.googleSearchSeperator], diff --git a/src/styles/styles.js b/src/styles/styles.js index 6bd5db594192..f3b6a0a8d5a9 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -2060,14 +2060,10 @@ const styles = { }, googleSearchSeperator: { - height: '1px', + height: 1, backgroundColor: themeColors.border, }, - googleSearchRow: { - maxWidth: '320px', - }, - googleSearchText: { color: themeColors.text, fontSize: variables.fontSizeNormal,