Is there a way to adjust both the width and height of the <v-text-field>
tag?
I attempted to modify it using .css, but it seems to only affect certain parameters, leaving large white spaces on my page.
This is the method I have tried so far:
<template>
<v-text-field class="first"></v-text-field>
</template>
<style>
.first {
width: 150px !important;
height: 350px !important;
}
</style>