I have multiple dialogs displayed on the same page, but only 3 of them are unique. I have been struggling to customize the dialog border and size using CSS.
.q-dialog {
z-index: 999999999;
}
.q-dialog__inner--minimized > div {
@media (min-width: 1000px) {
min-width: 1000px;
min-height: 500px;
}
}
Even though I assigned classes to each dialog, I couldn't adjust their size properly due to my limited understanding of CSS structure.
#myDialogFilter {
.q-dialog {
z-index: 999999999;
}
.q-dialog__inner--minimized > div {
@media (min-width: 500px) {
min-width: 500px;
min-height: 500px;
}
}
}
Any guidance is appreciated. Also, where can I find a comprehensive list of q-dialog CSS settings?