From 5cd002bb88042dd6032edb05c1ba4a5a61da302e Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Fri, 1 Apr 2022 19:59:51 -0700 Subject: [PATCH] fix: Remove forced white background on self hosted team logo closes #3315 --- app/components/Sidebar/App.tsx | 1 + app/components/TeamLogo.ts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Sidebar/App.tsx b/app/components/Sidebar/App.tsx index 8d0b6106e..5bef8d8f7 100644 --- a/app/components/Sidebar/App.tsx +++ b/app/components/Sidebar/App.tsx @@ -137,6 +137,7 @@ function AppSidebar() { const StyledTeamLogo = styled(TeamLogo)` margin-right: 4px; + background: white; `; const Drafts = styled(Text)` diff --git a/app/components/TeamLogo.ts b/app/components/TeamLogo.ts index 6d0efc0c3..4df19eafa 100644 --- a/app/components/TeamLogo.ts +++ b/app/components/TeamLogo.ts @@ -6,7 +6,6 @@ const TeamLogo = styled.img<{ width?: number; height?: number; size?: string }>` height: ${(props) => props.height ? `${props.height}px` : props.size || "38px"}; border-radius: 4px; - background: white; border: 1px solid ${(props) => props.theme.divider}; overflow: hidden; flex-shrink: 0;