diff --git a/tools/server/public/index.html.gz b/tools/server/public/index.html.gz
index 53b71079c1e2a..4f391e1559330 100644
Binary files a/tools/server/public/index.html.gz and b/tools/server/public/index.html.gz differ
diff --git a/tools/server/webui/src/index.scss b/tools/server/webui/src/index.scss
index 362db6e17df5e..879cd25855497 100644
--- a/tools/server/webui/src/index.scss
+++ b/tools/server/webui/src/index.scss
@@ -31,7 +31,24 @@ html {
hr {
@apply my-4 border-base-content/20 border-1;
}
- /* TODO: fix markdown table */
+ table {
+ @apply w-full border-collapse text-sm font-sans my-4 text-base-content;
+ }
+ thead {
+ @apply bg-base-200 text-base-content;
+ }
+ th {
+ @apply border border-base-300 px-4 py-2 text-left font-semibold;
+ }
+ td {
+ @apply border border-base-300 px-4 py-2 align-top;
+ }
+ tbody tr:nth-child(even) {
+ @apply bg-base-100;
+ }
+ tbody tr:hover {
+ @apply bg-base-200;
+ }
}
.btn-mini {