react-swipeable-views
react-swipeable-views copied to clipboard
How to remove overflow:auto in style sheet
can anyone tell me how can i remove overflow which can inside tab container. thanks you Mehul Jariwala
I also need to change style (overflow) of these children.
can anyone tell me how can i remove overflow which can inside tab container. thanks you Mehul Jariwala
I think you can only override it by replacing css class
.react-swipeable-view-container > div { overflow: unset !important; }
Another 'hacky' way is adding a little padding through the attribute
slideStyle={{padding: '5px'}}
Try to add slideStyle prop:
<SwipableViews slideStyle={{ overflow: 'visible'}}>
slideStyle according to Component API: This is the inlined style that will be applied on the slide component.