[Container] - property `disableGutters` doesn't work if theme `styleOverrides` have been applied
Open
Nobody has claimed this yet.
component: Container
scope: system
support: question
- Dominant language
- JavaScript
- Stars
- 99.1k
- Forks
- 32.5k
- Avg merge
- 2d 17h
- Merged PRs (30d)
- 106
Description
Duplicates
- I have searched the existing issues
Latest version
- I have tested the latest version
Current behavior 😯
When the Container padding style is overridden, the disableGutters property stops working.
Expected behavior 🤔
The disableGutters property should work even with the style override.
Steps to reproduce 🕹
If the container style have been overridden, the disableGutters property won't work.
// theme.tsx
...
components: {
MuiContainer: {
styleOverrides: {
root: {
[customBreakpoints.between('xs', 'sm')]: {
padding: '0 20px',
},
[customBreakpoints.up('md')]: {
padding: '0 90px',
},
},
},
},
},
...
<Container disableGutters> // won't remove gutters from 'xs' to 'sm' and above 'md'
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the issue from theme.tsx with a Container using disableGutters and the shown MuiContainer styleOverrides. Trace how the Container padding and style override are applied, then verify that disableGutters removes the overridden gutters at the affected breakpoints.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- react, typescript
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100