From 6944d4dc0b7864368a1ea218f574296ea13ba47e Mon Sep 17 00:00:00 2001 From: Athou Date: Fri, 16 Jun 2023 20:07:36 +0200 Subject: [PATCH] fix unreadable api documentation page with dark theme (#1082) --- commafeed-client/src/pages/app/ApiDocumentationPage.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/commafeed-client/src/pages/app/ApiDocumentationPage.tsx b/commafeed-client/src/pages/app/ApiDocumentationPage.tsx index f9eccc58..f31617c7 100644 --- a/commafeed-client/src/pages/app/ApiDocumentationPage.tsx +++ b/commafeed-client/src/pages/app/ApiDocumentationPage.tsx @@ -1,8 +1,14 @@ +import { Box } from "@mantine/core" import SwaggerUI from "swagger-ui-react" import "swagger-ui-react/swagger-ui.css" function ApiDocumentationPage() { - return + return ( + // force white background because swagger is unreadable with dark theme + + + + ) } export default ApiDocumentationPage