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 4c748e2 commit 46df927Copy full SHA for 46df927
src/Editor.tsx
@@ -125,7 +125,7 @@ export const Editor: FC = () => {
125
</div>
126
127
{/* CODE EDITOR */}
128
- <div className="relative h-full w-full">
+ <div className="relative h-full w-full overflow-y-scroll">
129
<Button
130
className="absolute top-3 right-3 z-10"
131
variant="subtle"
@@ -134,7 +134,7 @@ export const Editor: FC = () => {
134
>
135
{codeCopied ? <CheckIcon /> : <CopyIcon />} Copy
136
</Button>
137
- <div className="h-full w-full overflow-y-scroll bg-surface-secondary font-mono">
+ <div className="h-full w-full bg-surface-secondary font-mono">
138
<CodeEditor
139
value={$code}
140
onValueChange={(code) => $setCode(code)}
0 commit comments