Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 0 additions & 140 deletions docs/data/material/discover-more/showcase/Showcase.js

This file was deleted.

6 changes: 3 additions & 3 deletions docs/data/material/discover-more/showcase/showcase.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<p class="description">Check out these public apps using Material UI to get inspired for your next project.</p>

Are you working with MUI's component libraries? [Show us what you're building](https://github.com/mui/material-ui/issues/22426)! We'd love to see it.
This is a curated list of some of the best apps we've seen that show off what's possible with Material UI. Are you also using it? [Show us what you're building](https://github.com/mui/material-ui/issues/22426)! We'd love to see it.

This is a curated list of some of the best apps we've seen that show off what's possible with MUI's products.
---

{{"demo": "Showcase.js", "hideToolbar": true, "bg": "inline"}}
{{"component": "docs/src/modules/components/MaterialShowcase.js"}}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This new file location feels wrong. We should be able to render the component at the same location as the markdown. Issue created #42225

5 changes: 4 additions & 1 deletion docs/src/modules/brandingTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -803,12 +803,15 @@ export function getThemedComponents(): ThemeOptions {
},
MuiToggleButton: {
styleOverrides: {
root: ({ theme }) => [
root: ({ theme, ownerState }) => [
{
textTransform: 'none',
fontWeight: 500,
color: theme.palette.grey[700],
borderColor: theme.palette.grey[200],
...(ownerState.size === 'small' && {
padding: '0.375rem 0.75rem',
}),
'&.Mui-selected': {
color: (theme.vars || theme).palette.primary[500],
borderColor: `${(theme.vars || theme).palette.primary[500]} !important`,
Expand Down
Loading