Within my Laravel Blade, I encounter an issue where a modal pops up in portrait orientation on an iPad Pro, but is obstructed by the backdrop div. The message prompts the user to rotate the screen to landscape mode. However, the modal works perfectly in landscape mode on the same device...
Below is the modal code snippet:
<div id="oMsg" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- device orientation modal content-->
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">{{ __('Attention') }}</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body info">
<p class="roleChange_popupText">
Please rotate your device to landscape mode.
</p>
</div>
<div class="modal-footer mb-4">
<div class="col-md-12 text-right mb-4">
<button type="button" data-dismiss="modal" class="btn btn-primary btn-admin-form-save">{{ __('Confirm') }}</button>
</div>
</div>
</div>
</div>
</div>
Seeking a solution to bring the modal to the forefront and enable the button in portrait mode...