Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sphinxrave committed Oct 8, 2023
1 parent 7722455 commit 678d7d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/react/src/components/layout/Frame.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function Frame() {
<Sidebar id="sidebar" />
</aside>
<Header onClick={toggle} id='header' />
<main className="border border-green">
<main className="">
<RouterProvider router={router}></RouterProvider>
</main>
{isMobile && <footer className="">Footer</footer>}
Expand Down
6 changes: 4 additions & 2 deletions packages/react/src/components/sidebar/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function Sidebar({ className, id }: SidebarProps) {

return (
<div className={cn("pb-12", className)} id={id}>
<div className="space-y-4 py-2">
<div className="space-y-2 py-2">
<div className="px-3 py-2">
<h2 className="mb-2 px-4 font-semibold tracking-tight">
Hololive
Expand All @@ -29,11 +29,12 @@ export function Sidebar({ className, id }: SidebarProps) {
</Button>
</div>
</div>
<hr className="border-base" />
<div className="px-3 py-2">
<h2 className="mb-2 px-4 font-semibold tracking-tight" >
Holodex
</h2>
<div className="space-y-1">
<div className="space-y-2">
<Button className="w-full justify-start h-10" variant="ghost">
<span className="i-heroicons:heart"></span>
Favorites
Expand All @@ -42,6 +43,7 @@ export function Sidebar({ className, id }: SidebarProps) {
<span className="i-heroicons:rectangle-group"></span>
Multiview
</Button>
<hr className="border-base" />
<Button className="w-full justify-start" variant="ghost">
<span className="i-heroicons:queue-list"></span>
Playlist
Expand Down

0 comments on commit 678d7d6

Please sign in to comment.