feat(ui): reduce size of sidebar pane

Make it clearer the distinction between parent and child panes.
This commit is contained in:
Brian McGee
2025-08-26 11:16:03 +01:00
parent 2ff3d871ac
commit f5158b068f
2 changed files with 4 additions and 5 deletions

View File

@@ -8,8 +8,8 @@
}
.sidebar {
@apply absolute left-4 top-10 w-60;
@apply absolute left-4 top-[2.25rem] w-60;
@apply min-h-96;
height: calc(100vh - 8rem);
height: calc(100vh - 7.5rem);
}

View File

@@ -1,6 +1,5 @@
.sidebarPane {
@apply absolute left-[16.5rem] top-12 w-64;
@apply min-h-96;
@apply absolute left-[16.5rem] top-[5.5rem] w-64;
height: calc(100vh - 10rem);
height: calc(100vh - 14.5rem);
}