It looks like the component sets overflow: scroll as it's default option, with no way to lock it down to either overflow-x or overflow-y.
Expose a property called direction that takes the value:
Which correspondingly sets the appropriate overflow style:
overflow-x: scroll, overflow-y: noneoverflow-x: none, overflow-y: scrolloverflow: scrollSometimes content will nudge out slightly and causes horizontal scrollbars to show, especially between Windows and OSX. My typical scenario is that the design almost never calls for horizontal scrolling, and so the aim would be to never allow the browser to expose horizontal scrollbars.
+1
+1 for "the design almost never calls for horizontal scrolling".
Is there a temporary solution for this? An elegant one I mean :) I want to implement something along overflow-x: hidden; overflow: auto;
Most helpful comment
+1 for "the design almost never calls for horizontal scrolling".