Fix colors of tables

This commit is contained in:
Travis Ralston 2019-04-14 16:23:57 -06:00
parent 1e98d60cf1
commit 5aca4fde93
2 changed files with 22 additions and 20 deletions

View file

@ -54,5 +54,5 @@ button {
}
.error-text {
color: #bd362f;
color: #bd362f !important;
}

View file

@ -1,13 +1,14 @@
@import "../themes/themes";
@include themifyRoot() {
.main-app {
a {
color: themed(anchorColor);
}
table, td, th {
border-color: themed(tableBorderColor) !important;
color: themed(defaultFgColor) !important;
border-color: themed(tableBorderColor);
color: themed(defaultFgColor);
}
code {
@ -27,3 +28,4 @@
color: themed(formControlPlaceholderColor);
}
}
}