Skip to content

Commit

Permalink
One-for-All-174 Changed the design.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryo-Kgym committed Jul 12, 2024
1 parent fba0c34 commit 9aef46a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/src/app/_layout/NavbarSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ export const NavbarSection = ({
naviArray: Navi[];
children: React.ReactNode;
}) => {
const [opened, { toggle }] = useDisclosure();
const [opened, { toggle }] = useDisclosure(true);

return (
<AppShell
header={{ height: 60 }}
navbar={{
width: 150,
width: 200,
breakpoint: "sm",
collapsed: { desktop: !opened, mobile: !opened },
}}
Expand All @@ -32,7 +32,7 @@ export const NavbarSection = ({
</Group>
</AppShell.Header>

<AppShell.Navbar bg={"yellow"}>
<AppShell.Navbar bg={"rgba(255,173,27,0.5)"}>
<AppShell.Section component={ScrollArea}>
{naviArray
.filter(({ visible = true }) => visible)
Expand Down

0 comments on commit 9aef46a

Please sign in to comment.