When a dialog is opened on a narrow screen or on a mobile, it stays aligned to the top edge, rather than in the center.
When a dialog is opened on a narrow screen or on a mobile, it stays aligned to the top edge, rather than in the center.
Yes, this is how Radzen Blazor dialogs are implemented for mobile devices.
Answering myself:
@media (max-width: 768px) {
.rz-dialog:not(.rz-dialog-confirm):not(.rz-dialog-alert)
{
top: 50px !important;
}
}