From 644bc498623763c1b6892eeec9076414317c2d3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lorber?= Date: Mon, 18 Nov 2024 11:10:06 +0100 Subject: [PATCH] fix(theme-live-codeblock): fix live editor border-radius (#10689) --- .../src/theme/Playground/styles.module.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/docusaurus-theme-live-codeblock/src/theme/Playground/styles.module.css b/packages/docusaurus-theme-live-codeblock/src/theme/Playground/styles.module.css index f3298c779eb0..6696d31335b4 100644 --- a/packages/docusaurus-theme-live-codeblock/src/theme/Playground/styles.module.css +++ b/packages/docusaurus-theme-live-codeblock/src/theme/Playground/styles.module.css @@ -34,6 +34,10 @@ direction: ltr; } +.playgroundEditor pre { + border-radius: 0; +} + .playgroundPreview { padding: 1rem; background-color: var(--ifm-pre-background);