Fix dark mode styling

Fixes "Dark mode is broken" #83
This commit is contained in:
Phillip Kühne 2024-03-15 15:43:30 +01:00
parent 0234d64bf2
commit ed09a93b3d
Signed by: phillip
GPG Key ID: E4C1C4D2F90902AA

View File

@ -63,9 +63,14 @@ body {
width: 100%; width: 100%;
} }
.table {
color: var(--text-color);
}
table td { table td {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
color: var(--text-color);
} }
table.entries tbody tr[data-index="0"] { table.entries tbody tr[data-index="0"] {
@ -234,5 +239,8 @@ pre {
/* Toasts */ /* Toasts */
--toast-background-color: #232323; --toast-background-color: #232323;
--toast-text-color: #f5f5f5; --toast-text-color: #f5f5f5;
/* Tables */
--table-border-color: #232323;
} }
} }