fix: improve tag visibility in dark mode when disabled (#4675) (#4729)

This commit is contained in:
satyam 2025-06-25 19:31:19 +05:30 committed by GitHub
parent 81699a1e56
commit d66e40e2e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

View File

@ -645,9 +645,25 @@ const Marketplace = () => {
: selectedUsecases.filter((item) => item !== usecase) : selectedUsecases.filter((item) => item !== usecase)
) )
}} }}
sx={{
'& .MuiSvgIcon-root': {
color:
eligibleUsecases.length === 0 || !eligibleUsecases.includes(usecase)
? '#888 !important'
: undefined
}
}}
/> />
} }
label={usecase} label={usecase}
sx={{
'& .MuiFormControlLabel-label': {
color:
eligibleUsecases.length === 0 || !eligibleUsecases.includes(usecase)
? '#888 !important'
: undefined
}
}}
/> />
))} ))}
</Stack> </Stack>