fix(mobile): fix sidebar close button and scrollbar (#20)

Show the Sheet close button with sidebar-matching colors
instead of hiding it, and hide the native scrollbar on
mobile via data-attribute scoped CSS.

Co-authored-by: Nicholai <nicholaivogelfilms@gmail.com>
This commit is contained in:
Nicholai 2026-02-04 16:13:57 -07:00 committed by GitHub
parent 06fcc5eacb
commit d9b3e33b6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View File

@ -195,4 +195,11 @@
body {
@apply bg-background text-foreground;
}
}
[data-mobile="true"] [data-sidebar="content"] {
scrollbar-width: none;
}
[data-mobile="true"] [data-sidebar="content"]::-webkit-scrollbar {
display: none;
}

View File

@ -187,7 +187,7 @@ function Sidebar({
data-sidebar="sidebar"
data-slot="sidebar"
data-mobile="true"
className="bg-sidebar text-sidebar-foreground w-(--sidebar-width) p-0 [&>button]:hidden"
className="bg-sidebar text-sidebar-foreground w-(--sidebar-width) p-0 [&>button]:text-sidebar-foreground [&>button]:opacity-80 [&>button]:hover:opacity-100"
style={
{
"--sidebar-width": SIDEBAR_WIDTH_MOBILE,