Skip to content

Commit

Permalink
Merge pull request #22 from mikeleppane/fix/horizontal-layout-in-chrome
Browse files Browse the repository at this point in the history
fix/horizontal-layout-in-chrome
  • Loading branch information
mikeleppane authored Feb 11, 2022
2 parents cade43e + c6053a0 commit 813be1b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/src/components/MainView/CodeOutput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const ResultInfo: FunctionComponent = () => {
return (
<Box
id="result-view"
style={{ overflow: "scroll", height: "calc(100% - 25px)" }}
style={{ overflow: "auto", height: "calc(100% - 30px)" }}
>
{isStatsAvailable && (
<Box
Expand Down Expand Up @@ -58,7 +58,6 @@ const ResultInfo: FunctionComponent = () => {
fontFamily: "Source Sans Pro",
color: "white",
fontSize: "18px",
overflow: "scroll",
}}
>
<span style={{ color: "#4caf50" }}>========== Output ==========</span>
Expand All @@ -73,7 +72,6 @@ const ResultInfo: FunctionComponent = () => {
fontFamily: "Source Sans Pro",
color: "white",
fontSize: "18px",
overflow: "scroll",
}}
>
<span style={{ color: "#f44336" }}>========== Error ==========</span>
Expand Down

0 comments on commit 813be1b

Please sign in to comment.