3
0

Fix record list filter issue inside a modal

This commit is contained in:
Kelani Tolulope 2023-01-30 11:50:54 +01:00
parent 5edc1c415e
commit e580f7705d

View File

@ -4,6 +4,7 @@
v-model="showModal" v-model="showModal"
scrollable scrollable
dialog-class="h-100 mw-90" dialog-class="h-100 mw-90"
content-class="position-initial"
body-class="p-0" body-class="p-0"
footer-class="p-0" footer-class="p-0"
size="xl" size="xl"
@ -159,4 +160,8 @@ export default {
.mw-90 { .mw-90 {
max-width: 90vw; max-width: 90vw;
} }
.position-initial {
position: initial;
}
</style> </style>