I am having a SPFX-Webpart as static teams tab. I builded the manifest manually (like here https://learn.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/guidance/creating-team-manifest-manually-for-webpart). This is working fine so far.
But my problem is, that the container is not scrollable in the mobile app (android in my case). The content of my webpart is longer then the display/page and I just can't scroll down. The cause of this problem: there is a div container (with the classes "spAppAndPropertyPanelContainer" and "sp-appBar-parent-mobile) which has overflow set to hidden. This container is rendered by sharepoint or teams but not by my webpart.
So I can set custom css to override the default css and overcome this issue. Its working fine. But why is this container set to overflow hidden? Are there any reasons for this and do I have any issues later on by having my custom css to override this overflow behavior?
Or is there an other solution to have scrollable content in a custom spfx app in teams mobile?