Fix width of index table

main
Brian Picciano 1 year ago
parent d957041113
commit 0ad27f430d
  1. 9
      src/http/static/mediocre.css
  2. 4
      src/http/tpl/index.html

@ -63,6 +63,11 @@ table {
font-size: 0.8rem;
}
/* Undo the coloring that new.css does */
table tr:nth-child(even) {
background-color: initial;
}
table td {
border: 0;
margin: 0;
@ -73,7 +78,3 @@ table td input {
margin: 0;
width: 100%;
}
table tr:nth-child(even) {
background-color: initial;
}

@ -14,7 +14,9 @@
<table>
<colgroup>
<col span="1" style="width: 5rem;">
<col span="1" style="width: 6rem;">
<col span="1">
<col span="1" style="width: 50%;">
</colgroup>
{{ range .Payload.Posts }}

Loading…
Cancel
Save