remove unnecessary style removal

Signed-off-by: Reyna Nikolayev <reyna.nikolayev@autodesk.com>
This commit is contained in:
Reyna Nikolayev
2025-04-25 11:19:03 -07:00
parent 61f2aac5e4
commit d6d4b24e35
2 changed files with 8 additions and 2 deletions
-1
View File
@@ -7,4 +7,3 @@ Export ContentModal from `@backstage/plugin-home-react` so people can use this i
Made QuickStartCard `docsLinkTitle` prop more flexible to allow for any React.JSX.Element instead of just a string.
Added QuickStartCard prop `additionalContent` which can eventually replace the prop `video`.
Remove unused styles.
@@ -23,7 +23,8 @@ export type QuickStartCardClassKey =
| 'contentModal'
| 'imageSize'
| 'link'
| 'linkText';
| 'linkText'
| 'videoContainer';
export const useStyles = makeStyles(
(theme: Theme) => ({
@@ -56,6 +57,12 @@ export const useStyles = makeStyles(
linkText: {
marginBottom: theme.spacing(1.5),
},
videoContainer: {
borderRadius: '10px',
width: '100%',
height: 'auto',
background: `${theme.palette.background.default}`,
},
}),
{ name: 'HomeQuickStartCard' },
);