Fix styling for GraphiQL on the webhook page (#3389)

This commit is contained in:
Jakub Neander 2023-03-22 12:40:35 +01:00 committed by GitHub
parent 4fa11af37d
commit 49b50cb4c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -25,6 +25,7 @@ All notable, unreleased changes to this project will be documented in this file.
- Simplify codegen configuration to generate the graphql schema - #2538 by @abumalick - Simplify codegen configuration to generate the graphql schema - #2538 by @abumalick
- Add DevMode panel (trigger: CMD+') - #3333 by @zaiste - Add DevMode panel (trigger: CMD+') - #3333 by @zaiste
- Migrate to `es2020` for TypeScript - #3386 by @zaiste - Migrate to `es2020` for TypeScript - #3386 by @zaiste
- Fix styling for GraphiQL on the webhook page - #3389 by @zaiste
## 3.4 ## 3.4

View file

@ -64,6 +64,7 @@ export const useDashboardTheme = () => {
"--font-size-hint": vars.fontSize.bodyEmpLarge, "--font-size-hint": vars.fontSize.bodyEmpLarge,
"--font-size-inline-code": vars.fontSize.bodySmall, "--font-size-inline-code": vars.fontSize.bodySmall,
"--color-base": vars.colors.background.plain, "--color-base": vars.colors.background.plain,
"--alpha-background-light": 0,
} as React.CSSProperties; } as React.CSSProperties;
return { rootStyle }; return { rootStyle };