0👍
try the following:
.v-input–switch:not(.v-input–switch–flat):not(.v-input–switch–inset) .v-input–switch__thumb {
color: red
}
.theme–light.v-input–switch .v-input–switch__track {
color: red
}
- [Vuejs]-How can I make a message inside a v-for only appear once, if any of the items meets a certain condition?
- [Vuejs]-Uncaught (in promise) TypeError: this.resolveComponent is not a function | Inertia, Django & Vue
0👍
override styles globally:
.theme--light.v-input--switch .v-input--switch__track {
color: green !important;
}
.theme--light.v-input--switch.v-input--is-disabled:not(.v-input--is-dirty) .v-input--switch__track {
color: green !important;
}
Source:stackexchange.com