set default color for code block in light mode to black

This commit is contained in:
Pascal Fischer
2023-05-30 14:41:43 +02:00
parent cb6d5f5144
commit 5e98a1abfd
2 changed files with 2 additions and 2 deletions

View File

@@ -127,7 +127,7 @@ function CodePanel({ tag, label, code, children }) {
label={child.props.label ?? label}
/>
<div className="relative">
<pre className="overflow-x-auto p-4 text-xs text-white">{children}</pre>
<pre className="overflow-x-auto p-4 text-xs dark:text-white text-black">{children}</pre>
<CopyButton code={child.props.code ?? code} />
</div>
</div>

View File

@@ -918,7 +918,7 @@ In this step, we will generate netbird api token in okta for authorizing calls t
Your authority OIDC configuration will be available under:
```
```bash
https://< your_okta_organization_url >/.well-known/openid-configuration
```
<Note>