Skip to content

Commit b28b9e7

Browse files
committed
taskbar should not cover breadcrumbs bar
1 parent ed2b8f5 commit b28b9e7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

apps/vps-web/src/styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,3 +779,7 @@ html:active-view-transition-type(normal) {
779779
.blink-thumb {
780780
animation: blink-thumb 750ms infinite ease-in-out;
781781
}
782+
783+
#breadcrumbs:not(.hidden) ~ .taskbar-container {
784+
@apply top-[116px] max-h-[calc(100vh-166px)];
785+
}

libs/app-canvas/src/app/components/node-sidebar-menu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export class NodeSidebarMenuComponent extends Component<
239239

240240
renderElement(
241241
<div
242-
class={`taskbar-container transition-transform z-[20050] hidden md:flex flex-col absolute left-0 top-[58px] max-h-[calc(100vh-108px)] bg-slate-700 p-4 rounded-l-lg overflow-y-scroll`}
242+
class={`taskbar-container transition-transform z-[20050] hidden md:flex flex-col absolute left-0 top-[58px] max-h-[calc(100vh-108px)] bg-slate-700 p-4 overflow-y-scroll`}
243243
getElement={(element: HTMLElement) => {
244244
this.taskbarContainer = element;
245245
}}

0 commit comments

Comments
 (0)