Skip to content

Commit 1f09625

Browse files
committed
webui: fix table display with themes
1 parent 0874aec commit 1f09625

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tools/server/public/index.html.gz

-105 Bytes
Binary file not shown.

tools/server/webui/src/index.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ html {
3232
@apply my-4 border-base-content/20 border-1;
3333
}
3434
table {
35-
@apply w-full border-collapse text-sm font-sans my-4;
35+
@apply w-full border-collapse text-sm font-sans my-4 text-base-content;
3636
}
3737
thead {
38-
@apply bg-gray-200 text-gray-800;
38+
@apply bg-base-200 text-base-content;
3939
}
4040
th {
41-
@apply border border-gray-200 px-4 py-2 text-left text-gray-700 font-semibold;
41+
@apply border border-base-300 px-4 py-2 text-left font-semibold;
4242
}
4343
td {
44-
@apply border border-gray-100 px-4 py-2 text-gray-700 align-top;
44+
@apply border border-base-300 px-4 py-2 align-top;
4545
}
4646
tbody tr:nth-child(even) {
47-
@apply bg-gray-50;
47+
@apply bg-base-100;
4848
}
4949
tbody tr:hover {
50-
@apply bg-gray-100;
50+
@apply bg-base-200;
5151
}
5252
}
5353

0 commit comments

Comments
 (0)