Trying to fix my tab bar headers that are nested in a drawer. I attempted using the Antd recommended react-sticky library, but it didn't seem to work due to potential issues with the drawer scroll and tab body scrolling preventing the sticky functionality.
Ant Design Tabs Reference: https://ant.design/components/tabs/ https://i.sstatic.net/nMIU1.png
react-sticky package: https://www.npmjs.com/package/react-sticky
position: -webkit-sticky;
position: sticky;
top: 0;
I also experimented with custom CSS solutions, but encountered no success in resolving the issue.