I have a scenario where on a certain page there is a form with two radio buttons and two normal buttons "submit" and "cancel".
In normal Viewport it works fine, but when it comes to mobile devices there are some devices and browsers, like Edge, where these Submit and Cancel buttons are not visible. When I try to scroll down, it’s not working. As I had tested on BrowserStack for iOS and Android, there is this issue with some devices, so how can I fix this, making sure it will work for all devices and browsers?
I have given padding-bottom of 80 pixels using a media query of max-width 576 pixels where md is 576 pixels.
@media (max-width: map-get($grid-breakpoints, md)) {
.app-overlay{
padding-bottom: 80px;
}
}