Hey,
i would like to set up different overflow settings for X and Y Axis. I tried
overflow-x: auto;
overflow-y: visible;
in the Custom CSS Settings but it’s not working.
For additional Information: it’s a table that i would like to be horizontal scrollable on smaller screens, but within the table there is a Select Input Field. If i set the div to overflow auto, the horizontal scroll works fine, but when i open the Select Input, the div gets vertical scroll as well which is a bad UX in my example.
If I set the div to overflow:visible, the UX for the input select is how I would like it to be, its just on top of the following divs without increasing the size of the current div. But in this case the horizontal scroll is not working, so its not mobile responsive anymore.
I tried to work around this by using z-axis on the Select input but this does not solve the problem.
Any recommendations?