docs: fix react live scope button color in dark mode (#6191)

This commit is contained in:
Joshua Chen 2021-12-25 16:50:14 +08:00 committed by GitHub
parent 3889e89380
commit 8cd593379c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -331,6 +331,7 @@ const ButtonExample = (props) => (
{...props}
style={{
backgroundColor: 'white',
color: 'black',
border: 'solid red',
borderRadius: 20,
padding: 10,

View file

@ -14,6 +14,7 @@ export function ButtonExample(props: ComponentProps<'button'>): JSX.Element {
{...props}
style={{
backgroundColor: 'white',
color: 'black',
border: 'solid red',
borderRadius: 20,
padding: 10,