fix: Remove forced white background on self hosted team logo
closes #3315
This commit is contained in:
@@ -137,6 +137,7 @@ function AppSidebar() {
|
|||||||
|
|
||||||
const StyledTeamLogo = styled(TeamLogo)`
|
const StyledTeamLogo = styled(TeamLogo)`
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
|
background: white;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Drafts = styled(Text)`
|
const Drafts = styled(Text)`
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ const TeamLogo = styled.img<{ width?: number; height?: number; size?: string }>`
|
|||||||
height: ${(props) =>
|
height: ${(props) =>
|
||||||
props.height ? `${props.height}px` : props.size || "38px"};
|
props.height ? `${props.height}px` : props.size || "38px"};
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background: white;
|
|
||||||
border: 1px solid ${(props) => props.theme.divider};
|
border: 1px solid ${(props) => props.theme.divider};
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user