We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 957943a commit abc66b6Copy full SHA for abc66b6
packages/mdx/src/mini-editor/dialog.scss
@@ -30,4 +30,5 @@
30
inset: 40px;
31
overflow: hidden;
32
border-radius: 8px;
33
+ border: 1px solid;
34
}
packages/mdx/src/mini-editor/expand-button.tsx
@@ -1,4 +1,5 @@
1
import React from "react"
2
+import { ColorName, getColor } from "utils"
3
import { IRawTheme } from "vscode-textmate"
4
import { CodeBrowser } from "./code-browser"
5
import { EditorStep } from "./editor-shift"
@@ -48,7 +49,15 @@ export function ExpandButton({
48
49
}}
50
/>
51
{expanded ? (
- <div className="ch-expand-dialog-content">
52
+ <div
53
+ className="ch-expand-dialog-content"
54
+ style={{
55
+ borderColor: getColor(
56
+ theme,
57
+ ColorName.SideBarBorder
58
+ ),
59
+ }}
60
+ >
61
<CodeBrowser
62
files={files}
63
theme={theme}
0 commit comments