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
Hey man! i really like the multi sidebar but i have some minor issues
Not sure why this happens for me (maybe because i use starlight with tailwind), but for me the active tab looks like this:
Which can be resolved by modifying this part:
starlight-utils/packages/starlight-utils/components/HorizontalList.astro
Line 95 in a185830
.tab > [role="tab"] { display: block; text-align: center; font-size: var(--sl-text-base); font-weight: 400; text-decoration: none; color: var(--sl-color-gray-2); border-bottom: 1px solid var(--sl-color-gray-5); + border-top: unset; + border-left: unset; + border-right: unset; padding-inline: 0.2rem; }
I was able to fix this on my end using a custom.css and:
.tab > [role="tab"] { border-width: 1px !important; border-top: unset !important; border-left: unset !important; border-right: unset !important; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey man! i really like the multi sidebar but i have some minor issues
Not sure why this happens for me (maybe because i use starlight with tailwind), but for me the active tab looks like this:
Which can be resolved by modifying this part:
starlight-utils/packages/starlight-utils/components/HorizontalList.astro
Line 95 in a185830
I was able to fix this on my end using a custom.css and:
The text was updated successfully, but these errors were encountered: