-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
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
[Dialog] Fix action width issue #12081
Conversation
This is my first contribution to MU project and I couldn't run the tests ( it was complaining about missing packages and stuff! I read the documentation for Contribution, Code of conduct and testing instructions but with multiple Thanks! :) |
@oliviertassinari Do we need to update the Argos snapshots for this or should it have gone through without any changes to the UI? |
@@ -13,7 +13,7 @@ export const styles = theme => ({ | |||
...theme.typography.button, | |||
lineHeight: '1.4em', // Improve readability for multiline button. | |||
boxSizing: 'border-box', | |||
minWidth: 88, | |||
minWidth: theme.spacing.unit * 8, |
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.
We've moved away from using theme.spacing.unit
in components, but setting this to 64 would be a breaking change IMHO.
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.
Yeah, I think you are right, as theme.spacing.unit * 8
is being calculated to 64
already and that changes the rendering in a few component ( not sure if that's not expected )
I've changed it for now tho if we are not using theme.spacing.unit
anymore.
…re incorrect when rendered in a Dialog )
….spacing.unit * 8
f230e7b
to
0344b94
Compare
@mbrookes MCW is using 64px too. I think that this change is part of their new strategy, makes Material Design less opinionated. |
@mim-Armand It's a great first pull request on Material-UI 👌🏻. Thank you for giving it a shot! |
* attemting to fix Issue mui#11837 ( where the CircularProgress size were incorrect when rendered in a Dialog ) * changint the max-with to the calculated amount instead of using theme.spacing.unit * 8 * remove dialog action min-width
Closes #11837
Thank you for your feedback.