mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
Fix sidebar responsivity (#453)
* navbar height fix. has to be cleaned up * use parent height for tree * cleanups
This commit is contained in:
parent
4f1a97ceb9
commit
e064e58f79
@ -197,7 +197,7 @@ export default function SpaceTree({ spaceId, readOnly }: SpaceTreeProps) {
|
||||
disableEdit={readOnly}
|
||||
{...controllers}
|
||||
width={width}
|
||||
height={height}
|
||||
height={rootElement.current.clientHeight}
|
||||
ref={treeApiRef}
|
||||
openByDefault={false}
|
||||
disableMultiSelection={true}
|
||||
|
@ -3,10 +3,12 @@
|
||||
}
|
||||
|
||||
.treeContainer {
|
||||
display: flex;
|
||||
height: 68vh;
|
||||
flex: 1;
|
||||
height: 100%;
|
||||
min-width: 0;
|
||||
|
||||
> div, > div > .tree {
|
||||
height: 100% !important;
|
||||
}
|
||||
}
|
||||
|
||||
.node {
|
||||
|
@ -18,6 +18,16 @@
|
||||
}
|
||||
}
|
||||
|
||||
.sectionPages {
|
||||
margin-bottom: 0;
|
||||
overflow-y: hidden;
|
||||
|
||||
.pages {
|
||||
height: 100%;
|
||||
padding-bottom: 26px;
|
||||
}
|
||||
}
|
||||
|
||||
.menuItems {
|
||||
padding-left: calc(var(--mantine-spacing-md) - var(--mantine-spacing-xs));
|
||||
padding-right: calc(var(--mantine-spacing-md) - var(--mantine-spacing-xs));
|
||||
|
@ -134,7 +134,7 @@ export function SpaceSidebar() {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className={classes.section}>
|
||||
<div className={[classes.section, classes.sectionPages].join(' ')}>
|
||||
<Group className={classes.pagesHeader} justify="space-between">
|
||||
<Text size="xs" fw={500} c="dimmed">
|
||||
Pages
|
||||
|
Loading…
x
Reference in New Issue
Block a user