Imagine having a Test.vue file containing 2 v-text-field components.
I'm looking to style only the first text field using CSS.
Test.vue
<template>
<div class="test">
<v-text-field></v-text-field>
<v-text-field></v-text-field>
</div>
</template>
<script>
export default {};
</script>
<style scoped>
.v-text-field {
width: 100px;
}
.v-text-field >>> input {
font-size: 2em;
color: #fff;
}
.v-text-field--outlined >>> fieldset {
color: #000000 !important;
}
</style>>