My textarea seems to have a top margin that I can't get rid of. Here is my code:
<v-flex d-flex xs12>
<v-textarea
v-model="test"
outline
type="text"
color="primary"
v-validate="{required: true}"
data-vv-name="test"
:error-messages="errors.collect('test')"
> </v-textarea>
</v-flex>
I tried adding class="mt-0"
to v-textarea
but it didn't work.
Can anyone help me remove this top margin and explain why it's there in the first place?
The version I'm using is 1.5.x.
Thank you!