-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
[docs] Fix Pickers customization playground overflow #13742
Conversation
Deploy preview: https://deploy-preview-13742--material-ui-x.netlify.app/ |
@@ -392,6 +396,7 @@ export default function PickersPlayground() { | |||
ampm: ampm !== undefined ? ampm : undefined, | |||
ampmInClock: ampmInClock !== undefined ? ampmInClock : undefined, | |||
displayStaticWrapperAs: isStaticDesktopMode ? 'desktop' : 'mobile', | |||
sx: { [`&.${pickersLayoutClasses.root}`]: { overflowX: 'auto' } }, |
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.
This is the only relevant bugfix.
It does. The Desktop and Mobile variants are rendered. |
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.
Nice improvement ! 🙂
Fixes #13736.
Also add
DateTimeRangePicker
into this playground.