update icon fill colors

This commit is contained in:
Abhinav 2022-06-28 16:18:51 +05:30
parent 9f213b17a4
commit 50b0b2ffa8
3 changed files with 12 additions and 3 deletions

View file

@ -13,7 +13,12 @@ export default function CollectionSort(props: CollectionSortProps) {
return (
<OverflowMenu
ariaControls="collection-sort"
triggerButtonIcon={<SortIcon />}>
triggerButtonIcon={<SortIcon />}
triggerButtonProps={{
sx: {
background: (theme) => theme.palette.fill.dark,
},
}}>
<CollectionSortOptions {...props} />
</OverflowMenu>
);

View file

@ -29,7 +29,11 @@ export default function AllCollectionsHeader({
activeSortBy={collectionSortBy}
setCollectionSortBy={setCollectionSortBy}
/>
<IconButton onClick={onClose}>
<IconButton
onClick={onClose}
sx={{
background: (theme) => theme.palette.fill.dark,
}}>
<Close />
</IconButton>
</Stack>

View file

@ -209,7 +209,7 @@ const CollectionOptions = (props: CollectionOptionsProps) => {
triggerButtonIcon={<MoreVertIcon />}
triggerButtonProps={{
sx: {
background: (theme) => theme.palette.background.paper,
background: (theme) => theme.palette.fill.dark,
},
}}>
{activeCollection?.type === CollectionType.album && (