From b8f1e0592b16da9efbb9a2ba354e12f2b7c992bd Mon Sep 17 00:00:00 2001 From: Luke Donahue Date: Wed, 6 Oct 2021 17:05:24 -0600 Subject: [PATCH] style adjustment --- src/components/AddressSearch.js | 12 ++++++++---- src/styles/styles.js | 6 +----- 2 files changed, 9 insertions(+), 9 deletions(-) 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,