Skip to content

Commit

Permalink
Merge pull request #1 from ryohidaka/fix/output-height
Browse files Browse the repository at this point in the history
[BugFix] 結果の文章がはみ出す不具合を修正
  • Loading branch information
arkwnet authored Dec 18, 2023
2 parents b7d37e4 + 5b69fae commit f6143e5
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,11 @@ p {

.main .output {
width: 800px;
height: 200px;
min-height: 200px;
max-height: 400px;
padding: 10px;
text-align: left;
overflow-y: auto;
}

.main .canvas {
Expand Down Expand Up @@ -105,6 +107,14 @@ p {
.main .input,
.main .output {
width: 95%;
}

.main .input {
height: 150px;
}

.main .output {
min-height: 150px;
max-height: 300px;
}
}

0 comments on commit f6143e5

Please sign in to comment.