From 14cc74fdb96323788365ebfdbbabd53a12274f37 Mon Sep 17 00:00:00 2001 From: Matthew Birtch Date: Fri, 28 Oct 2022 09:01:51 -0400 Subject: [PATCH] update team sidebar's background color to match with the theme color used in the webapp (#6711) --- app/components/team_sidebar/team_sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/team_sidebar/team_sidebar.tsx b/app/components/team_sidebar/team_sidebar.tsx index eccd77333..50a84181d 100644 --- a/app/components/team_sidebar/team_sidebar.tsx +++ b/app/components/team_sidebar/team_sidebar.tsx @@ -28,7 +28,7 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => { paddingTop: 10, }, listContainer: { - backgroundColor: theme.sidebarTeamBarBg, + backgroundColor: theme.sidebarHeaderBg, borderTopRightRadius: 12, flex: 1, },