react-tabs
react-tabs copied to clipboard
TabPanel scrollable?
Hi there, is it anyway to scroll inside the tabPanel only? e.g | Tabs1 | Tabs 2 | Tabs3 |
| //TabPanel section scrollable if height exceed screen height | Thank You
give the style on your TabList, example :
<TabList style={{ position: "fixed", width: "100%" }} >
and give padding top to the TabPanel:
<TabPanel style={{ paddingTop: "50px" }}>
@vieyama doing this stops the controlled feature
Hello, here is a simple solution to achieve scrollable tabs.
- Add a container around
<TabList>
and assignoverflow: scroll
. - Assign
width: max-content;
to.react-tabs__tab-list
Demo available here: https://codepen.io/alexpapworth/pen/eYaNorx