From 0db410ecd36940b73a84c6d9148156be988d4ba8 Mon Sep 17 00:00:00 2001 From: rishabhsharma1997 Date: Wed, 7 Aug 2024 05:52:34 +0530 Subject: [PATCH 1/2] chore: lighthouse effect to 100% max width Signed-off-by: rishabhsharma1997 --- src/custom/CustomImage/CustomImage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/custom/CustomImage/CustomImage.tsx b/src/custom/CustomImage/CustomImage.tsx index 3df9025b..352205f2 100644 --- a/src/custom/CustomImage/CustomImage.tsx +++ b/src/custom/CustomImage/CustomImage.tsx @@ -53,13 +53,14 @@ const CustomImage: React.FC = ({ src, alt, ...props }) => { background: 'transparent', boxShadow: 'none', overflow: 'auto', - maxWidth: '60rem' + maxWidth: '100%' } }} > {alt} Date: Wed, 7 Aug 2024 07:41:53 +0530 Subject: [PATCH 2/2] chore: prerequisite a tag fix Signed-off-by: rishabhsharma1997 --- src/custom/SetupPrerequisite/style.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/custom/SetupPrerequisite/style.tsx b/src/custom/SetupPrerequisite/style.tsx index d9e9516e..76cdbdaf 100644 --- a/src/custom/SetupPrerequisite/style.tsx +++ b/src/custom/SetupPrerequisite/style.tsx @@ -33,8 +33,10 @@ const Card = styled('a')(({ theme }) => ({ boxShadow: 'rgb(0, 211, 169) 0px 0px 7px' }, '& a': { - color: theme.palette.background.brand?.default, - margin: '0 !important' + margin: '0 !important', + '&:hover': { + color: theme.palette.background.brand?.default + } } }));