Skip to content

Commit

Permalink
Increases text visibility for plugin edit sheet in dark mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
metroid-samus committed Nov 29, 2023
1 parent 1a99d5d commit ffa8dab
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/dispatch/static/dispatch/src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,21 @@
.v-card--variant-outlined {
border-color: rgb(210, 210, 210);
}

.v-theme--light{
.formkit-input {
--fk-color-input: rgb(0,0,0);;
}
.formkit-help {
--fk-color-help: rgb(0,0,0);
}
}

.v-theme--dark{
.formkit-input {
--fk-color-input: rgb(255,255,255);;
}
.formkit-help {
--fk-color-help: rgb(255,255,255);;
}
}

0 comments on commit ffa8dab

Please sign in to comment.