Skip to content

Commit

Permalink
[docs] fix custom "no results overlay" demo in dark mode (mui#13715)
Browse files Browse the repository at this point in the history
  • Loading branch information
KenanYusuf authored and thomasmoon committed Sep 6, 2024
1 parent b0ede76 commit 1fa2517
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/data/data-grid/overlays/NoResultsOverlayCustom.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ const StyledGridOverlay = styled('div')(({ theme }) => ({
justifyContent: 'center',
height: '100%',
'& .no-results-primary': {
fill: theme.palette.mode === 'light' ? '#AEB8C2' : '#`3D4751`',
fill: theme.palette.mode === 'light' ? '#AEB8C2' : '#3D4751',
},
'& .no-results-secondary': {
fill: theme.palette.mode === 'light' ? '#E8EAED' : '#`1D2126`',
fill: theme.palette.mode === 'light' ? '#E8EAED' : '#1D2126',
},
}));

Expand Down
4 changes: 2 additions & 2 deletions docs/data/data-grid/overlays/NoResultsOverlayCustom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ const StyledGridOverlay = styled('div')(({ theme }) => ({
justifyContent: 'center',
height: '100%',
'& .no-results-primary': {
fill: theme.palette.mode === 'light' ? '#AEB8C2' : '#`3D4751`',
fill: theme.palette.mode === 'light' ? '#AEB8C2' : '#3D4751',
},
'& .no-results-secondary': {
fill: theme.palette.mode === 'light' ? '#E8EAED' : '#`1D2126`',
fill: theme.palette.mode === 'light' ? '#E8EAED' : '#1D2126',
},
}));

Expand Down

0 comments on commit 1fa2517

Please sign in to comment.