Skip to content

Commit

Permalink
add: 'h-screen' to sidebar on music, change: route on playground
Browse files Browse the repository at this point in the history
  • Loading branch information
agmmnn committed Apr 18, 2023
1 parent faaf5c9 commit 35cd609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/examples/music/components/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface SidebarProps extends React.HTMLAttributes<HTMLDivElement> {

export function Sidebar({ className, playlists }: SidebarProps) {
return (
<div className={cn("pb-12", className)}>
<div className={cn("pb-12 h-screen", className)}>
<div className="space-y-4 py-4">
<div className="px-4 py-2">
<h2 className="mb-2 px-2 text-lg font-semibold tracking-tight">
Expand Down
2 changes: 1 addition & 1 deletion src/app/examples/playground/components/preset-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function PresetSelector({ presets, ...props }: PresetSelectorProps) {
))}
</CommandGroup>
<CommandGroup className="pt-0">
<CommandItem onSelect={() => router.push("/examples")}>
<CommandItem onSelect={() => router.push("/")}>
More examples
</CommandItem>
</CommandGroup>
Expand Down

0 comments on commit 35cd609

Please sign in to comment.