Skip to content

Commit

Permalink
Use monospace font in admin table
Browse files Browse the repository at this point in the history
  • Loading branch information
LEDfan committed Jul 26, 2021
1 parent 7756df4 commit 307342c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/main/resources/static/css/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,11 @@ body > div#navbar { padding-top: 0px; }
}

.admin-proxy-id {
width: 20em;
width: 23em;
}

.admin-monospace {
font-family: monospace;
}

.admin-proxy-status {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ <h3>Active Proxies</h3>
<th>Image</th>
<th>Image tag</th>
</tr>
<tr th:each="proxy: ${proxies}">
<tr th:each="proxy: ${proxies}" class="admin-monospace">
<td class="admin-proxy-id" th:text="${proxy.id}"></td>
<td class="admin-proxy-status" th:text="${proxy.status}"></td>
<td th:text="${proxy.userId}"></td>
Expand Down

0 comments on commit 307342c

Please sign in to comment.