Tuesday, May 14, 2024
 Popular · Latest · Hot · Upcoming
94
rated 0 times [  96] [ 2]  / answers: 1 / hits: 20312  / 4 Years ago, tue, june 16, 2020, 12:00:00

Does someone knows how to change the outlined color of the v-text-field component.
Click for the image


More From » vue.js

 Answers
21

You can override the default style using deep selector. The original css is on the fieldset element, so you need to target that aswell.



<style scoped>
.v-text-field--outlined >>> fieldset {
border-color: rgba(192, 0, 250, 0.986);
}
</style>

[#50872] Sunday, May 31, 2020, 4 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
amari

Total Points: 736
Total Questions: 111
Total Answers: 90

Location: Saint Pierre and Miquelon
Member since Fri, Jan 28, 2022
2 Years ago
;