diff options
author | thorhj <burpen@gmail.com> | 2024-05-22 09:12:51 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-05-22 22:44:16 +0100 |
commit | 7715b7cdddbd635e2edf2ac0faa8ccf09b866025 (patch) | |
tree | 10889801ccf176a6a0a8fd3139bb55a02920b0a4 | |
parent | 0e532f0f2407d6438abf840ed67cf92d3eccf1d2 (diff) | |
download | tour-7715b7cdddbd635e2edf2ac0faa8ccf09b866025.tar.gz tour-7715b7cdddbd635e2edf2ac0faa8ccf09b866025.zip |
fix hidden code editor
-rw-r--r-- | static/css/pages/lesson.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/static/css/pages/lesson.css b/static/css/pages/lesson.css index dbf5cfe..a8338b3 100644 --- a/static/css/pages/lesson.css +++ b/static/css/pages/lesson.css @@ -30,11 +30,13 @@ position: relative; overflow: clip; flex-grow: 1; + min-height: 50%; } #output { min-height: 1rem; background: var(--color-background-dim); + overflow: auto; } #output>* { @@ -70,7 +72,6 @@ #output { height: 33%; - overflow: auto; border-top: 1px solid var(--color-accent-muted); } } @@ -130,4 +131,4 @@ display: flex; flex-direction: column; justify-content: space-between; -}
\ No newline at end of file +} |