From 47435cdfed3c9448ca51b05b401e5541f6226e4e Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Mon, 23 Dec 2024 10:15:05 -0500 Subject: [PATCH] Fix docked actionbar expanding menu height (#2027) --- src/components/actionbar/ComfyActionbar.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/actionbar/ComfyActionbar.vue b/src/components/actionbar/ComfyActionbar.vue index d0daa83b1..28e646cc5 100644 --- a/src/components/actionbar/ComfyActionbar.vue +++ b/src/components/actionbar/ComfyActionbar.vue @@ -230,6 +230,10 @@ watch([isDragging, isOverlappingWithTopMenu], ([dragging, overlapping]) => { @apply p-1; } +.is-docked :deep(.p-panel-content) { + @apply p-0; +} + :deep(.p-panel-header) { display: none; }