Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions apps/builddao/widget/template/SidebarLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@ const SidebarContainer = styled.div`
border: 1px solid var(--stroke-color, rgba(255, 255, 255, 0.2));
background: var(--bg-1, #0b0c14);
width: 100%;

min-height: 80vh;
display: flex;
padding: 24px 12px;
flex-direction: column;
align-items: flex-start;
gap: 16px;
margin-bottom: 1rem;
height: max-content;

@media screen and (max-width: 768px) {
border: 0px;
Expand Down Expand Up @@ -58,7 +57,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