Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/OpenSourceBrain/OSBv2 in…
Browse files Browse the repository at this point in the history
…to develop
  • Loading branch information
filippomc committed Mar 26, 2024
2 parents ca6cfad + 9bb1f51 commit 74c656d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
4 changes: 1 addition & 3 deletions applications/osb-portal/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ const styles = {
minHeight: "100vh",
display: "flex",
flexDirection: "column",
height: {
md: "100vh",
},
height: "100vh",
overflow: {
xs: "auto",
md: "hidden",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ export const WorkspaceDrawer: React.FunctionComponent<WorkspaceDrawerProps> = ({
alignItems="stretch"
flex="1"
className="verticalFill"
height={1}
>
<Drawer
variant="permanent"
Expand Down
2 changes: 1 addition & 1 deletion applications/osb-portal/src/pages/WorkspaceOpenPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default (props: any) => {
}, [workspaceId]);

return (
<Box className="verticalFill">
<Box className="verticalFill" height={1}>
<Divider variant="fullWidth" />
<WorkspaceDrawer app={app} />
</Box>
Expand Down
9 changes: 1 addition & 8 deletions applications/osb-portal/src/pages/WorkspacePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,13 @@ export const WorkspacePage = (props: any) => {
<Grid
container={true}
alignItems="center"
justifyContent="space-between"
className="verticalFill"
spacing={1}
sx={{ background: bgDarkest }}
>
<Grid
item={true}
xs={12}
sm={12}
md={7}
lg={7}
className="verticalFill"
>
<NavbarButton
Expand All @@ -121,10 +118,6 @@ export const WorkspacePage = (props: any) => {
<Grid
item={true}
gap={1}
xs={12}
sm={8}
md={5}
lg={5}
justifyContent="end"
padding={"0 16px"}
>
Expand Down

0 comments on commit 74c656d

Please sign in to comment.