Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mui/material-ui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fa6b14a595a008b21413c44bf778b41814a57317
Choose a base ref
...
head repository: mui/material-ui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b5ee5e6f4b671401e7b1f6c0ae7fde8e3c92c1e7
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Apr 16, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cd35b80 View commit details
  2. Copy the full SHA
    b5ee5e6 View commit details
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@ import PropTypes from 'prop-types';
import clsx from 'clsx';
import withStyles from '../styles/withStyles';

export const styles = {
export const styles = (theme) => ({
/* Styles applied to the root element. */
root: {
display: 'flex',
padding: '8px 24px 24px',
padding: theme.spacing(1, 2, 2),
},
};
});

const ExpansionPanelDetails = React.forwardRef(function ExpansionPanelDetails(props, ref) {
const { classes, className, ...other } = props;
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ export const styles = (theme) => {
display: 'flex',
minHeight: 8 * 6,
transition: theme.transitions.create(['min-height', 'background-color'], transition),
padding: theme.spacing(0, 3),
padding: theme.spacing(0, 2),
'&:hover:not($disabled)': {
cursor: 'pointer',
},