Skip to content

Commit

Permalink
fix: select label color is white (regardless of the selected theme) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Larsluph authored May 12, 2023
1 parent 5056133 commit ef333b2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/Navbar/FilterSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,16 @@ export default {
color: #64ceaa !important;
}
.v-select__slot > label {
color: white !important;
&.theme--dark {
color: white !important;
}
&.theme--light {
color: black !important;
}
}
#app .v-select .v-text-field__details {
display: none;
}
#app .v-select .v-select__selection {
padding: 16px 0;
margin: 0;
Expand Down

0 comments on commit ef333b2

Please sign in to comment.