From d39e209c6bd711d1238b63c260a5270cda2caa31 Mon Sep 17 00:00:00 2001 From: gyaneshwarchoudhary Date: Sun, 5 Oct 2025 13:45:20 +0530 Subject: [PATCH] fix: prevent output overflow in output box for large loops (#196) --- src/pages/EditorComponent.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/EditorComponent.js b/src/pages/EditorComponent.js index bb8ba54..3a0acb1 100644 --- a/src/pages/EditorComponent.js +++ b/src/pages/EditorComponent.js @@ -50,6 +50,7 @@ const OutputLayout = styled("div")(({ theme }) => ({ backgroundColor: theme.palette.background.paper, height: "50vh", margin: "1rem 0", + overflow: "auto", border: `2px solid ${theme.palette.divider}`, borderRadius: "1rem", "@media (min-width: 1024px)": {