forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs][system] Fix border color of Boxes in demos of `Configure the s…
…x prop` page in dark mode (mui#35961)
- Loading branch information
1 parent
a41260a
commit 0c2caaf
Showing
6 changed files
with
22 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
docs/data/system/experimental-api/configure-the-sx-prop/ChangeTheBehaviorSxProp.tsx.preview
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<ThemeProvider theme={theme}> | ||
<Box sx={{ borderRadius: 'sm', border: '1px solid black', p: 4 }} /> | ||
<Box sx={{ borderRadius: 'md', border: '1px solid black', p: 4 }} /> | ||
<Box sx={{ borderRadius: 'lg', border: '1px solid black', p: 4 }} /> | ||
<Box sx={{ borderRadius: 'sm', border: 1, p: 4 }} /> | ||
<Box sx={{ borderRadius: 'md', border: 1, p: 4 }} /> | ||
<Box sx={{ borderRadius: 'lg', border: 1, p: 4 }} /> | ||
</ThemeProvider> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<Box | ||
sx={{ | ||
size: 10, | ||
border: '1px solid black', | ||
border: 1, | ||
}} | ||
/> | ||
</ThemeProvider> |