fix: align text on left

Closes: #368

Signed-off-by: Leonidas Spyropoulos <artafinde@archlinux.org>
This commit is contained in:
Leonidas Spyropoulos 2022-07-17 12:19:18 +01:00
parent 034e47bc28
commit 28970ccc91
No known key found for this signature in database
GPG key ID: 59E43E106B247368
2 changed files with 2 additions and 7 deletions

View file

@ -6,11 +6,11 @@
<table class="no-width"> <table class="no-width">
<tbody> <tbody>
<tr> <tr>
<td class="text-right">{{ "Total" | tr }} {{ "Trusted Users" | tr }}:</td> <td>{{ "Total" | tr }} {{ "Trusted Users" | tr }}:</td>
<td>{{ trusted_user_count }}</td> <td>{{ trusted_user_count }}</td>
</tr> </tr>
<tr> <tr>
<td class="text-right">{{ "Active" | tr }} {{ "Trusted Users" | tr }}:</td> <td>{{ "Active" | tr }} {{ "Trusted Users" | tr }}:</td>
<td>{{ active_trusted_user_count }}</td> <td>{{ active_trusted_user_count }}</td>
</tr> </tr>
</tbody> </tbody>

View file

@ -278,11 +278,6 @@ pre.traceback {
word-wrap: break-all; word-wrap: break-all;
} }
/* A text aligning alias. */
.text-right {
text-align: right;
}
/* By default, tables use 100% width, which we do not always want. */ /* By default, tables use 100% width, which we do not always want. */
table.no-width { table.no-width {
width: auto; width: auto;