fix(editor): use colors from color scheme to render table cells

Resolves https://github.com/go-vikunja/vikunja/issues/253
This commit is contained in:
kolaente 2024-04-21 23:57:07 +02:00
parent d86fdcb756
commit 26ada628a2
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -818,7 +818,7 @@ watch(
td,
th {
min-width: 1em;
border: 2px solid #ced4da;
border: 2px solid var(--grey-300) !important;
padding: 3px 5px;
vertical-align: top;
box-sizing: border-box;
@ -832,7 +832,7 @@ watch(
th {
font-weight: bold;
text-align: left;
background-color: #f1f3f5;
background-color: var(--grey-200);
}
.selectedCell:after {