improve table display
All checks were successful
/ build-container (push) Successful in 8m46s

This commit is contained in:
Finn 2024-11-24 16:21:08 -08:00
parent a26b9cc63e
commit 01b7750259
2 changed files with 5 additions and 1 deletions

View file

@ -2,7 +2,7 @@
<header>{{ if eq .Data.lock.Name "" }}Lock #{{ .Data.lock.ID }}{{ else }}{{ .Data.lock.Name }}{{ end }}</header>
[ <a href="{{ $.BaseURL }}/locks/{{ .Data.lock.ID }}/edit">rename</a> ]<br />
<br />
<table border="1">
<table class="table">
<tr>
<td>Slot</td>
<td>Name</td>

View file

@ -30,3 +30,7 @@ header {
.code-enabled {
background-color: #0a0;
}
.table {
width: 100%;
}