-
Notifications
You must be signed in to change notification settings - Fork 933
fix: display health alert in DeploymentBannerView
#10193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
3893821
5682238
f59d467
8cca491
bee5ecb
9600c49
78f701c
626f4f6
5785c4d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,9 +159,7 @@ export const HelpTooltip: FC<PropsWithChildren<HelpTooltipProps>> = ({ | |
); | ||
}; | ||
|
||
export const HelpTooltipTitle: FC<PropsWithChildren<unknown>> = ({ | ||
children, | ||
}) => { | ||
export const HelpTooltipTitle: FC<PropsWithChildren> = ({ children }) => { | ||
return <h4 css={styles.title}>{children}</h4>; | ||
}; | ||
|
||
|
@@ -242,7 +240,7 @@ const styles = { | |
marginBottom: theme.spacing(1), | ||
color: theme.palette.text.primary, | ||
fontSize: 14, | ||
lineHeight: "120%", | ||
lineHeight: "150%", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm wondering if this could be changed to just There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure what you mean by "work better with CSS inheritance". There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wish they were the same, but they aren't There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why is CSS like this 😭 |
||
fontWeight: 600, | ||
}), | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.