Greetings! I've attempted various methods to center the label in my v-text-field, but unfortunately none of them have been successful. Please see the code snippet below:
HTML Code
<v-text-field dark class="centered-input" label="your code"></v-text-field>
CSS Code
.centered-input >>> label {
color: white;
font-size:20px;
text-align: center;
}
Is there a way to align the label properly using Vuetify?