1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Updating icon color (#14835)

This commit is contained in:
George Marshall 2022-06-03 12:45:03 -07:00 committed by GitHub
parent 0166575405
commit c18c3b078e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -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>

View File

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