I'm currently working on a project using vuetify, and I am facing an issue while trying to add a custom class to a v-dialog component. I have tried searching for information on how to do this, but it seems that the prop "content-class" has been deprecated in the latest version of vuetify. Can someone suggest an alternative approach?
<v-dialog v-model="loginUserDialog" content-class="loginmodalbox" max-width="600px" persistent>
</v-dialog>
.loginmodalbox .modal-title {
font-size: 20px;
font-weight: 700;
margin-bottom: 25px;
text-transform: uppercase;
color: #ffffff;
border-bottom: 1px solid rgba(255,255,255,0.08);
padding-bottom: 8px;
}