File tree Expand file tree Collapse file tree
routes/_layout/$accountName/$projectName Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const PageMenu = ({ children }: PageMenuProps) => {
99 return (
1010 < Box
1111 position = "sticky"
12- top = { 16 } // Height of Topbar
12+ top = { 0 }
1313 maxW = "300px"
1414 minW = "200px"
1515 h = "fit-content"
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ const Sidebar = ({ basePath }: SidebarProps) => {
7272 { /* Desktop */ }
7373 < Box
7474 bg = { bgColor }
75- h = "calc(100vh - 65px )"
75+ h = "calc(100vh - 64px )"
7676 position = "sticky"
7777 left = "0"
7878 top = { 16 }
Original file line number Diff line number Diff line change @@ -146,7 +146,11 @@ function ProjectLayout() {
146146 ) : (
147147 < Flex >
148148 < Sidebar basePath = { `/${ accountName } /${ projectName } ` } />
149- < Container maxW = "full" mx = { 6 } mb = { 10 } >
149+ < Container
150+ maxW = "full"
151+ overflowY = "scroll"
152+ height = "calc(100vh - 64px)"
153+ >
150154 < Container
151155 maxW = "100%"
152156 alignContent = "center"
You can’t perform that action at this time.
0 commit comments