fix: Remove forced white background on self hosted team logo

closes #3315
This commit is contained in:
Tom Moor
2022-04-01 19:59:51 -07:00
parent 1b89959fc1
commit 5cd002bb88
2 changed files with 1 additions and 1 deletions

View File

@@ -137,6 +137,7 @@ function AppSidebar() {
const StyledTeamLogo = styled(TeamLogo)`
margin-right: 4px;
background: white;
`;
const Drafts = styled(Text)`

View File

@@ -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;