Skip to content

Commit

Permalink
πŸ’„ remove inline progress-bar height
Browse files Browse the repository at this point in the history
Bootstrap sets it to `1rem` per default, which seems appropriate
  • Loading branch information
krmax44 committed Nov 24, 2023
1 parent 902a684 commit a74098d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% load humanize %}

<div>
<div class="progress" style="height: 25px;">
<div class="progress">
<div class="progress-bar" role="progressbar" title="{% trans 'Requests received' %}" style="width: {{ percentage }}%;" aria-valuenow="{{ percentage }}" aria-valuemin="0" aria-valuemax="100"></div>
<div class="progress-bar bg-success" role="progressbar" title="{% trans 'Successful requests' %}" style="width: {{ percentage_success }}%" aria-valuenow="{{ percentage_success }}" aria-valuemin="0" aria-valuemax="100"></div>
</div>
Expand Down

0 comments on commit a74098d

Please sign in to comment.