By default, Experience Builder Developer Edition publishes the index.html file with the following:
<style>
overflow: hidden;
}
This presents a problem to end users with small screen resolutions when using a date picker in a filter/query widget, as seen in the image below. A simple solution is to make this change in the exported site's index.html file:
overflow: auto;
This enables the scroll wheel for users when the date picker dates can't be accessed. Because I have several apps, and because each time I download from ExB DevEd, I have to remember to manually edit each index.html, I'm wondering if there's a way to find the original source that creates the index.html and modify it's settings once and forget it. I'm sure this is frowned upon by the good folks at ESRI but my goals is to make the UX as easy to navigate as possible and currently it doesn't do that.
(In the image below, this user couldn't access dates beyond the first week. The date picker doesn't allow for manually typing a date)