From 23194034dac17acd3a6ced1bf528b4d0a17c024f Mon Sep 17 00:00:00 2001 From: Jason Frerich Date: Tue, 8 Nov 2022 12:54:57 -0600 Subject: [PATCH] [Gekidou MM-47765] Add horizontal padding to empty results (#6745) --- app/components/no_results_with_term/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/components/no_results_with_term/index.tsx b/app/components/no_results_with_term/index.tsx index b5ee725e6f..82f15986c2 100644 --- a/app/components/no_results_with_term/index.tsx +++ b/app/components/no_results_with_term/index.tsx @@ -23,11 +23,13 @@ const getStyleFromTheme = makeStyleSheetFromTheme((theme: Theme) => { return { container: { flexGrow: 1, + paddingHorizontal: 32, height: '100%', alignItems: 'center' as const, justifyContent: 'center' as const, }, result: { + textAlign: 'center', color: theme.centerChannelColor, ...typography('Heading', 400, 'SemiBold'), },