Updating icon color (#14835)

feature/default_network_editable
George Marshall 3 years ago committed by GitHub
parent 0166575405
commit c18c3b078e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      ui/components/app/collectibles-items/collectibles-items.js
  2. 4
      ui/components/app/collectibles-items/index.scss

@ -168,7 +168,11 @@ export default function CollectiblesItems({
</Typography>
</Box>
<Box alignItems={ALIGN_ITEMS.FLEX_END}>
<i className={`fa fa-chevron-${isExpanded ? 'down' : 'right'}`} />
<i
className={`collectibles-items__collection__icon-chevron fa fa-chevron-${
isExpanded ? 'down' : 'right'
}`}
/>
</Box>
</Box>
</button>

@ -47,5 +47,9 @@
height: 100%;
cursor: pointer;
}
&__icon-chevron {
color: var(--color-icon-default);
}
}
}

Loading…
Cancel
Save