From b547f5b18ff57cda5d6d5c5baf656a2551d9aef1 Mon Sep 17 00:00:00 2001 From: mim Date: Sat, 7 Jul 2018 14:42:36 -0500 Subject: [PATCH] changint the max-with to the calculated amount instead of using theme.spacing.unit * 8 --- packages/material-ui/src/Button/Button.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/material-ui/src/Button/Button.js b/packages/material-ui/src/Button/Button.js index 611fa8f44a6ae4..6e5aad2b0578ad 100644 --- a/packages/material-ui/src/Button/Button.js +++ b/packages/material-ui/src/Button/Button.js @@ -13,7 +13,7 @@ export const styles = theme => ({ ...theme.typography.button, lineHeight: '1.4em', // Improve readability for multiline button. boxSizing: 'border-box', - minWidth: theme.spacing.unit * 8, + minWidth: 64, minHeight: 36, padding: '8px 16px', borderRadius: theme.shape.borderRadius,