We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an option for the maximum number of tabs before scrolling appears (8 by default), or the ability to move the divider.
I have 21 pinned tabs and without scrolling they take up half the panel.
CSS that does what I want:
/* Scrolling pinned tabs */ #root:is([data-pinned-tabs-position="top"], [data-pinned-tabs-position="panel"])[data-pinned-tabs-list="true"] .PinnedTabsBar:has(:nth-child(9)) { height: calc(var(--tabs-height) * 11.3); overflow-y: auto; margin-bottom: 2px !important; padding: 0 !important} #root:is([data-pinned-tabs-position="top"], [data-pinned-tabs-position="panel"])[data-pinned-tabs-list="true"] .PinnedTabsBar::after { position: sticky; bottom: 0 !important}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Add an option for the maximum number of tabs before scrolling appears (8 by default), or the ability to move the divider.
I have 21 pinned tabs and without scrolling they take up half the panel.
CSS that does what I want:
The text was updated successfully, but these errors were encountered: