diff --git a/app/src/page/search/view.js b/app/src/page/search/view.js
index a37a3cd3..5b810e01 100644
--- a/app/src/page/search/view.js
+++ b/app/src/page/search/view.js
@@ -104,8 +104,7 @@ class SearchPage extends React.PureComponent {
}
- {!isSearching && (!uris || uris.length === 0) &&
- No results to display.}
+
{!isSearching &&
navigateToUri(navigation, uri)}/>)
) : null }
+ {(!uris || uris.length === 0) &&
+
+ There are no results to display for {query}. Please try a different search term.
+ }
}
diff --git a/app/src/styles/search.js b/app/src/styles/search.js
index 601b7bd1..3e532472 100644
--- a/app/src/styles/search.js
+++ b/app/src/styles/search.js
@@ -8,7 +8,7 @@ const searchStyle = StyleSheet.create({
},
scrollContainer: {
flex: 1,
- marginTop: 60
+ marginTop: 60,
},
busyContainer: {
flex: 1,
@@ -16,6 +16,7 @@ const searchStyle = StyleSheet.create({
justifyContent: 'center'
},
scrollPadding: {
+ flex: 1,
paddingBottom: 16
},
resultItem: {
@@ -27,7 +28,6 @@ const searchStyle = StyleSheet.create({
marginRight: 8
},
featuredResultItem: {
- flex: 1,
flexDirection: 'row',
justifyContent: 'space-between',
paddingTop: 8,
@@ -42,11 +42,22 @@ const searchStyle = StyleSheet.create({
fontFamily: 'Inter-UI-Regular',
fontSize: 16
},
+ noResults: {
+ flex: 1,
+ width: '100%',
+ height: '100%',
+ justifyContent: 'center',
+ alignItems: 'center'
+ },
noResultsText: {
- textAlign: 'center',
fontFamily: 'Inter-UI-Regular',
- fontSize: 14,
- position: 'absolute'
+ fontSize: 16,
+ marginLeft: 16,
+ marginRight: 16
+ },
+ boldText: {
+ fontFamily: 'Inter-UI-SemiBold',
+ fontSize: 16
},
loading: {
position: 'absolute'
diff --git a/app/src/styles/uriBar.js b/app/src/styles/uriBar.js
index 2c1847df..07986dfe 100644
--- a/app/src/styles/uriBar.js
+++ b/app/src/styles/uriBar.js
@@ -20,10 +20,12 @@ const uriBarStyle = StyleSheet.create({
},
uriText: {
backgroundColor: Colors.VeryLightGrey,
- padding: 8,
borderRadius: 24,
+ paddingLeft: 12,
+ paddingRight: 12,
fontFamily: 'Inter-UI-Regular',
fontSize: 16,
+ lineHeight: 18,
flex: 17
},
overlay: {