fix: select label color is white (regardless of the selected theme) (#812)

This commit is contained in:
Rémi Marseault 2023-05-12 14:08:35 +02:00 committed by GitHub
parent 5056133c25
commit ef333b2366
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;