-
Notifications
You must be signed in to change notification settings - Fork 15
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
Various bugfixes and code cleanup #934
Conversation
<Container maxWidth='md'> | ||
<Card sx={{ my: 4 }}> | ||
<Container maxWidth='md' sx={{ my: 4 }}> | ||
<Card> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we wanting to use the default Card
appearance here or can we use variant='outlined'
to match other uses
@@ -106,7 +106,7 @@ export default function ReviewBanner({ release, accessRequest }: ReviewBannerPro | |||
borderWidth: '1px', | |||
borderStyle: 'solid', | |||
borderColor: theme.palette.primary.main, | |||
borderRadius: '4px 4px 0px 0px', | |||
borderRadius: 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we don't want a radius can we delete this? Or is it inheriting a default value from somewhere else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By default Paper
has a borderRadius
so this is needed to override that
No description provided.