Skip to content

Commit

Permalink
Fix rendering of active call icon in sidebar's channel link (#754)
Browse files Browse the repository at this point in the history
  • Loading branch information
streamer45 authored Jun 13, 2024
1 parent 674c56e commit 0a20ecb
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions webapp/src/components/channel_link_label/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,17 @@ const ChannelLinkLabel = (props: Props) => {
{
display: 'flex',
alignItems: 'center',
marginLeft: 'auto',
justifyContent: 'center',
height: 'auto',
minWidth: '20px',
marginLeft: 'auto',
marginRight: '4px',
}
}
>
<ActiveCallIcon
fill={props.theme.sidebarText}
style={{width: '12px', height: '12px'}}
style={{minWidth: '12px', maxWidth: '12px', minHeight: '12px', maxHeight: '12px'}}
/>
</span>
</OverlayTrigger>
Expand Down

0 comments on commit 0a20ecb

Please sign in to comment.