Skip to content

Commit

Permalink
Merge pull request #1946 from cozy/feat/accordion
Browse files Browse the repository at this point in the history
fix: Border color of Accordion
  • Loading branch information
JF-Cozy authored Nov 4, 2021
2 parents dc18c2f + 4628488 commit 7f8c035
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions react/MuiCozyTheme/makeOverrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const makeOverrides = theme => ({
boxShadow: '0 4px 12px 0 rgba(0, 0, 0, 0.08)',
borderWidth: '0.0625rem',
borderStyle: 'solid',
borderColor: theme.palette.grey[200],
borderColor: theme.palette.border.main,
overflow: 'hidden',
marginBottom: '1rem'
}
Expand Down Expand Up @@ -119,7 +119,7 @@ const makeOverrides = theme => ({
MuiAccordionDetails: {
root: {
padding: 0,
borderTop: `0.0625rem solid ${theme.palette.grey[200]}`
borderTop: `0.0625rem solid ${theme.palette.border.main}`
}
},
MuiStepConnector: {
Expand Down

0 comments on commit 7f8c035

Please sign in to comment.