react-tabs icon indicating copy to clipboard operation
react-tabs copied to clipboard

TabPanel scrollable?

Open leon2835 opened this issue 5 years ago • 2 comments

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

leon2835 avatar May 14 '19 03:05 leon2835

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 avatar Nov 08 '19 07:11 vieyama

@vieyama doing this stops the controlled feature

deflexable avatar Aug 08 '23 12:08 deflexable

Hello, here is a simple solution to achieve scrollable tabs.

  1. Add a container around <TabList> and assign overflow: scroll.
  2. Assign width: max-content; to .react-tabs__tab-list

Demo available here: https://codepen.io/alexpapworth/pen/eYaNorx

Screenshot 2024-05-15 at 13 36 35

alexpapworth avatar May 15 '24 12:05 alexpapworth