Skip to content

Commit d52fda7

Browse files
committed
Merge branch 'catalogue-catagories-flagging-#1659' into catalogue-items-flaggging-#1656
2 parents ca31695 + 70f65a8 commit d52fda7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/catalogue/category/catalogueCard.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function CatalogueCard(props: CatalogueCardProps) {
6262
width: '100%',
6363
textDecoration: 'none',
6464
color: 'inherit',
65-
position: 'relative', // Make the parent container relative
65+
position: 'relative',
6666
}}
6767
>
6868
<Card

src/common/__snapshots__/criticalityTooltipIcon.component.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exports[`CriticalityTooltipIcon > renders correctly (showFlagged=null) 1`] = `
2626
<svg
2727
aria-hidden="true"
2828
aria-label="test"
29-
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1vxd69-MuiSvgIcon-root"
29+
class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1xvssuy-MuiSvgIcon-root"
3030
data-mui-internal-clone-element="true"
3131
data-testid="WarningIcon"
3232
focusable="false"

src/common/criticalityTooltipIcon.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const getIcon = (showFlagged: boolean | null) => {
1515
<WarningIcon
1616
sx={(theme) => ({
1717
pr: 1,
18-
fontSize: '35px',
18+
fontSize: '36px',
1919
color: theme.palette.warning.main,
2020
})}
2121
/>

src/utils.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ export const criticalityCardStyle = (props: {
728728

729729
return {
730730
border: `2px solid ${color}`,
731-
boxShadow: `0 0 10px 3px ${alpha(color, 0.53)}`, // 88 = ~53% opacity for fuzzy glow
731+
boxShadow: `0 0 10px 3px ${alpha(color, 0.53)}`, // 53% opacity for fuzzy glow
732732
};
733733
};
734734

0 commit comments

Comments
 (0)