Greetings, I am facing an issue with the following code snippet:
<v-text-field
:rules="rules"
v-model="exam.title"
class="exam-title ma-0 pa-0"
></v-text-field>
<v-text-field class="exam-title ma-0 pa-0"></v-text-field>
It seems to have some unwanted margin or padding at the bottom which is not affected by adding a class. How can I remove this extra spacing?
https://i.sstatic.net/FgTeM.jpg
The issue was resolved by encapsulating it within another element like so:
<v-col lg="8">
<v-text-field
v-model="questions.question"
class="question-container-question"
></v-text-field>
</v-col>