Bugfix/fix footer row border in dark mode (#478)

* Fix border color in dark mode

* Update changelog
This commit is contained in:
Thomas Kaul
2021-11-17 23:23:32 +01:00
committed by GitHub
parent 634171e4e3
commit fc6c81fe02
2 changed files with 15 additions and 2 deletions

View File

@@ -31,7 +31,14 @@
}
:host-context(.is-dark-theme) {
.mat-form-field {
color: rgba(var(--light-primary-text));
.mat-table {
td {
&.mat-footer-cell {
border-top-color: rgba(
var(--palette-foreground-divider-dark),
var(--palette-foreground-divider-dark-alpha)
);
}
}
}
}