Skip to content

Commit

Permalink
Fix spacing of runlog
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Apr 21, 2023
1 parent e685feb commit dd45bda
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions reproserver/web/templates/results.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h1>Run results</h1>
</a>
<div id="runlog" class="collapse">
<div class="card-body">
<pre style="max-height: 200px">{% for line in log %}{{ line }}
<pre style="max-height: 200px" class="my-0">{% for line in log %}{{ line }}
{% endfor %}</pre>
</div>
</div>
Expand Down Expand Up @@ -69,11 +69,9 @@ <h2>Output files:</h2>
<p class="card-header">
Run log
</p>
<div>
<div class="card-body">
<pre id="log" style="max-height: 200px">{% for line in log %}{{ line }}
<div class="card-body">
<pre id="log" style="max-height: 200px">{% for line in log %}{{ line }}
{% endfor %}</pre>
</div>
</div>
</div>

Expand Down

0 comments on commit dd45bda

Please sign in to comment.