Skip to content

Commit

Permalink
style: Use monospace font to render Disk Usage and Amount
Browse files Browse the repository at this point in the history
Without this, the width of `405215138` looks less than that of `399089984`.
  • Loading branch information
rahulsom committed Feb 19, 2024
1 parent 3f46a74 commit e5c3e11
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@
</td>
<td style="text-align: right">
<j:choose>
<j:when test="${e.usage > 0}">${e.usage}</j:when>
<j:when test="${e.usage > 0}"><code>${e.usage}</code></j:when>
<j:otherwise>N/A</j:otherwise>
</j:choose>
</td>
<td style="text-align: right">
<j:choose>
<j:when test="${e.count > 0}">${e.count}</j:when>
<j:when test="${e.count > 0}"><code>${e.count}</code></j:when>
<j:otherwise>N/A</j:otherwise>
</j:choose>
</td>
Expand Down

0 comments on commit e5c3e11

Please sign in to comment.