Skip to content

Commit

Permalink
Add missing security schemes component (#673)
Browse files Browse the repository at this point in the history
* add missing security schemes component

* change bg color
  • Loading branch information
sserrata authored Dec 6, 2023
1 parent 6f9eff6 commit 02509f1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@
}
}

.openapi-security__summary-container {
background: var(--ifm-pre-background);
}

// Prevent auto zoom on mobile iOS devices when focusing on input elmenents
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-device-width: 1024px) {
.prism-code,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import Request from "@theme/ApiExplorer/Request";
import Response from "@theme/ApiExplorer/Response";
import { ApiItem } from "docusaurus-plugin-openapi-docs/src/types";

import SecuritySchemes from "./SecuritySchemes";

function ApiExplorer({
item,
infoPath,
Expand All @@ -24,6 +26,7 @@ function ApiExplorer({

return (
<>
<SecuritySchemes infoPath={infoPath} />
{item.method !== "event" && (
<CodeSnippets
postman={postman}
Expand Down

0 comments on commit 02509f1

Please sign in to comment.