aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/stats.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-06-27 12:26:35 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-06-27 12:26:35 -0700
commit99b5bee19d07656fe8ea0b20a61c46d0139e7e0d (patch)
tree4b44a87f268ad52d1de925a46f9c3360d6f4215e /python/fatcat_web/templates/stats.html
parent5d9d3b5985991167f53cc07ba3b33b560db9bcac (diff)
downloadfatcat-99b5bee19d07656fe8ea0b20a61c46d0139e7e0d.tar.gz
fatcat-99b5bee19d07656fe8ea0b20a61c46d0139e7e0d.zip
fix stats padding (mobile)
Diffstat (limited to 'python/fatcat_web/templates/stats.html')
-rw-r--r--python/fatcat_web/templates/stats.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/fatcat_web/templates/stats.html b/python/fatcat_web/templates/stats.html
index eaff8f8d..5b769b1b 100644
--- a/python/fatcat_web/templates/stats.html
+++ b/python/fatcat_web/templates/stats.html
@@ -13,7 +13,7 @@ You can also fetch these numbers <a href="./stats.json">as JSON</a>.
<table class="ui structured table">
<tbody>
- <tr><td rowspan="5" class="active top aligned center aligned" style="padding-top:0px;"><b>"Papers"</b></td>
+ <tr style="padding-top:0px;"><td rowspan="5" class="active top aligned center aligned"><b>"Papers"</b></td>
<td>Total</td>
<td class="right aligned">{{ "{:,}".format(stats.papers.total) }}</td>
<tr>
@@ -29,14 +29,14 @@ You can also fetch these numbers <a href="./stats.json">as JSON</a>.
<td>On web, not in Keepers</td>
<td class="right aligned">{{ "{:,}".format(stats.papers.in_web_not_kbart) }}</td>
- <tr><td rowspan="2" class="active top aligned center aligned" style="padding-top:0px;"><b>Releases</b></td>
+ <tr style="padding-top:0px;"><td rowspan="2" class="active top aligned center aligned"><b>Releases</b></td>
<td>Total</td>
<td class="right aligned">{{ "{:,}".format(stats.release.total) }}</td>
<tr>
<td>References (raw, unlinked)</td>
<td class="right aligned">{{ "{:,}".format(stats.release.refs_total) }}</td>
- <tr><td rowspan="1" class="active top aligned center aligned" style="padding-top:0px;"><b>Containers</b></td>
+ <tr style="padding-top:0px;"><td rowspan="1" class="active top aligned center aligned"><b>Containers</b></td>
<td>Total</td>
<td class="right aligned">{{ "{:,}".format(stats.container.total) }}</td>
</tbody>