making this look usable on ipad and okay on larger desktop browser

This commit is contained in:
2021-06-18 00:40:40 +10:00
parent beb1ae6eb8
commit 9e5e74bcdb
2 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,7 @@
{% if job.num_files and job.num_files > 0 %}
<div class="col-lg-10 px-0">
{% set prog=(job.current_file_num/job.num_files*100)|round|int %}
<div class="progress" style="height:80%">
<div class="progress mt-2" style="height:24px">
<div class="progress-bar bg-info" role="progressbar" style="width: {{prog}}%;" aria-valuenow="{{prog}}" aria-valuemin="0" aria-valuemax="100">{{job.current_file_num}} of {{job.num_files}} - {{prog}}%</div>
</div>
{% elif job.num_files == 0 and job.current_file_num > 0 %}