I'm facing an issue with vertically scrolling a Vaadin Dialog that contains a VerticalLayout taller than the screen when using a touchscreen device. However, the Dialog scrolls normally on a desktop environment using the mouse wheel.
Here is the relevant HTML:
<vaadin-dialog-overlay id="overlay" focus-trap="" with-backdrop="" opened="" role="dialog" style="z-index: 201;">
<flow-component-renderer appid="ROOT" nodeid="94" style="">
<div class="draggable" style="width: 100%; height: 100%;">
<vaadin-vertical-layout class="genericDialog" theme="padding spacing" style="width: 100%;">
<vaadin-horizontal-layout class="titleDialog" theme="spacing">
[stuff...]
</vaadin-horizontal-layout>
<vaadin-vertical-layout theme="padding spacing" style="width: 100%;">
[stuff...]
</vaadin-vertical-layout>
<vaadin-horizontal-layout class="buttonsDialog" theme="spacing">
[stuff...]
</vaadin-horizontal-layout>
</vaadin-vertical-layout>
</div>
</flow-component-renderer>
</vaadin-dialog-overlay>
The <vaadin-vertical-layout>
nested inside is the element causing the vertical scroll problem when it exceeds the screen's height.