Skip to content

Commit 4e471aa

Browse files
committed
🐛 Attempt to fix an overflow issue with Monaco
1 parent 081160d commit 4e471aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/repl.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ export const Repl: Component<ReplProps> = (props) => {
270270
(props.ref as (el: HTMLDivElement) => void)(el);
271271
}
272272
}}
273-
class="relative grid bg-blueGray-50 h-full overflow-hidden text-blueGray-900 dark:text-blueGray-50 font-sans"
273+
class="relative grid bg-blueGray-50 h-full overflow-hidden text-blueGray-900 dark:text-blueGray-50 font-sans z-50"
274274
classList={{
275275
'wrapper--forced': props.isHorizontal,
276276
wrapper: !props.isHorizontal,

0 commit comments

Comments
 (0)