Fix different margin-top on stats/new users in index

This commit is contained in:
Xevion
2022-03-27 13:04:27 -05:00
parent 46960bcadc
commit 83b72ae292

View File

@@ -17,9 +17,15 @@
<div class="statistics" style="margin: 1em;">
<h2>runnerspace Statistics</h2>
<div>
<div style="margin: 1.2em;">
<strong>{{ stats['total_comments'] }}</strong> comments across <strong>{{ stats['total_posts'] }}</strong> posts<br>
<strong>{{ stats['total_users'] }}</strong> users
<div>
<ul>
<li>
<strong>{{ stats['total_comments'] }}</strong> comments across <strong>{{ stats['total_posts'] }}</strong> posts<br>
</li>
<li>
<strong>{{ stats['total_users'] }}</strong> users
</li>
</ul>
</div>
</div>