Given the following Vuetify Textfield component
<v-text-field label="Label goes here" model-value="Value goes here"></v-text-field>
The general font-size is way too big for my application. I want to lower down the label and text size. For the text I tried
.v-text-field input {
font-size: 10px;
}
but I can't figure out the CSS selector for the label, this didn't work for me
.v-text-field label {
font-size: 8px;
}
The second problem is that this solution only works without the scoped
attribute and I don't know why.
Do you have any ideas? This question might be a duplicate of How Do I change font-size in vuetify component