<v-dialog
v-model="dialog"
max-width="250" class="pa-6"
>
<v-card class="scroll" min-height="300" max-height="700" color="rgb(255, 255, 255, 0.7)">
<v-form>
<v-row>
<v-col></v-col>
<v-col>
<v-btn class="mr-4" color="primary" style="color:white; font-weight:bold" @click.prevent="dialog = false">Save</v-btn>
</v-col>
<v-col></v-col>
</v-row>
</v-form>>
</v-card>
</v-dialog>
I have a dialog component in my Vuetify project that currently appears in the center of the screen. I would like to know how to move it to the left side corner instead. Any suggestions on changing the position of this popup dialog?