Skip to content

Commit

Permalink
Merge pull request #123 from NEARBuilders/fix-aside
Browse files Browse the repository at this point in the history
Fix aside menu height on mobile view
  • Loading branch information
itexpert120 authored Feb 2, 2024
2 parents de9659e + cd0f55c commit 129a473
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/builddao/widget/template/SidebarLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const SidebarContainer = styled.div`
border: 0px;
flex-direction: row;
overflow-x: auto;
min-height: auto;
}
`;

Expand Down Expand Up @@ -57,7 +58,7 @@ const Sidebar = ({ currentPath, page, routes }) => (
textDecoration: "none",
cursor: "pointer",
padding: "8px 12px",
gap: "10px"
gap: "10px",
}}
>
{route.init.icon && <i className={`bi ${route.init.icon} `} />}
Expand Down

0 comments on commit 129a473

Please sign in to comment.