diff --git a/.changeset/social-seals-shout.md b/.changeset/social-seals-shout.md new file mode 100644 index 0000000000..b3c386b7cb --- /dev/null +++ b/.changeset/social-seals-shout.md @@ -0,0 +1,7 @@ +--- +'@backstage/plugin-scaffolder-react': patch +--- + +Detail icon - light theme - fix + +- Fixes the detail icon in light theme to be visible in proper color (same as favorite star). diff --git a/plugins/scaffolder-react/src/next/components/TemplateCard/CardHeader.tsx b/plugins/scaffolder-react/src/next/components/TemplateCard/CardHeader.tsx index 5e5c6fe8bf..edba47ac1a 100644 --- a/plugins/scaffolder-react/src/next/components/TemplateCard/CardHeader.tsx +++ b/plugins/scaffolder-react/src/next/components/TemplateCard/CardHeader.tsx @@ -36,6 +36,9 @@ const useStyles = makeStyles< display: 'flex', justifyContent: 'space-between', }, + detailIcon: { + color: ({ cardFontColor }) => cardFontColor, + }, })); /** @@ -67,7 +70,10 @@ export const CardHeader = (props: CardHeaderProps) => {