Skip to content

Commit

Permalink
[docs][material-ui][Autocomplete] Fix GitHubLabel demo input backgrou…
Browse files Browse the repository at this point in the history
…nd color (#43599)
  • Loading branch information
sai6855 authored Sep 4, 2024
1 parent 8094d0b commit c7cd5bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/data/material/components/autocomplete/GitHubLabel.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const StyledInput = styled(InputBase)(({ theme }) => ({
borderBottom: `1px solid ${'#30363d'}`,
'& input': {
borderRadius: 4,
backgroundColor: '#0d1117',
backgroundColor: '#fff',
border: `1px solid ${'#30363d'}`,
padding: 8,
transition: theme.transitions.create(['border-color', 'box-shadow']),
Expand All @@ -94,7 +94,7 @@ const StyledInput = styled(InputBase)(({ theme }) => ({
}),
},
...theme.applyStyles('dark', {
backgroundColor: '#fff',
backgroundColor: '#0d1117',
border: `1px solid ${'#eaecef'}`,
}),
},
Expand Down
4 changes: 2 additions & 2 deletions docs/data/material/components/autocomplete/GitHubLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const StyledInput = styled(InputBase)(({ theme }) => ({
borderBottom: `1px solid ${'#30363d'}`,
'& input': {
borderRadius: 4,
backgroundColor: '#0d1117',
backgroundColor: '#fff',
border: `1px solid ${'#30363d'}`,
padding: 8,
transition: theme.transitions.create(['border-color', 'box-shadow']),
Expand All @@ -98,7 +98,7 @@ const StyledInput = styled(InputBase)(({ theme }) => ({
}),
},
...theme.applyStyles('dark', {
backgroundColor: '#fff',
backgroundColor: '#0d1117',
border: `1px solid ${'#eaecef'}`,
}),
},
Expand Down

0 comments on commit c7cd5bd

Please sign in to comment.