Skip to content

Commit

Permalink
softer edges for border line
Browse files Browse the repository at this point in the history
  • Loading branch information
LianaHus authored and Aniket-Engg committed Dec 4, 2023
1 parent 9a2c425 commit 0af20fd
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ const Icon = ({iconRecord, verticalIconPlugin, contextMenuAction, theme}: IconPr
return (
<>
<div className='d-flex' style={{width: 'auto', placeContent: stylePC}}>
{iconRecord.active && <div className='pt-1 bg-primary' style={{width: "6px", height: "36px", position: 'relative'}}></div>}
{iconRecord.active && <div
className='pt-1 bg-primary'
style={{width: "6px", height: "36px", position: 'relative', borderRadius: '24%'}}
></div>}
<CustomTooltip
placement={name === 'settings' ? 'right' : name === 'search' ? 'top' : name === 'udapp' ? 'bottom' : 'top'}
tooltipText={title}
Expand Down

0 comments on commit 0af20fd

Please sign in to comment.