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;