Skip to content

Commit

Permalink
fix(icon-style): Ensure consistent icon dimensions (#3727)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sofien-Sellami authored Dec 13, 2023
1 parent 0177b62 commit 6ca13c0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion platform/ui/src/components/SidePanel/SidePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,13 @@ const SidePanel = ({ side, className, activeTabIndex: activeTabIndexProp, tabs,
data-cy={`${tab.name}-btn`}
>
<div className={getTabIconClassNames(tabs.length, tabIndex === activeTabIndex)}>
<Icon name={tab.iconName}></Icon>
<Icon
name={tab.iconName}
style={{
width: '22px',
height: '22px',
}}
></Icon>
</div>
</div>
</Tooltip>
Expand Down

0 comments on commit 6ca13c0

Please sign in to comment.