Skip to content

Commit

Permalink
[Platform]: AotF pinned rows fix css class (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
carcruz authored Sep 8, 2023
1 parent e367b6d commit cc957b2
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ const PinnedContainer = styled('div', {
})(({ active }) => ({
opacity: active ? '1' : '0',
cursor: 'pointer',
transition: 'opacity ease-in 150ms, scale ease 300ms',
marginLeft: '5px',
'&:hover': {
scale: 1.1,
Expand Down Expand Up @@ -98,7 +97,11 @@ function CellName({ name, rowId, row, tablePrefix }) {

return (
<NameContainer>
<PinnedContainer onClick={handleClickPin} active={isPinned}>
<PinnedContainer
className="pinnedIcon"
onClick={handleClickPin}
active={isPinned}
>
<FontAwesomeIcon icon={pinnedIcon} size="sm" />
</PinnedContainer>
<Tooltip
Expand Down

0 comments on commit cc957b2

Please sign in to comment.