fix(editor): Prevent Ask Assistant button overlapping other buttons (#16066)

This commit is contained in:
Jaakko Husso
2025-06-09 12:28:35 +03:00
committed by GitHub
parent b92d8ad1e1
commit 4426249950

View File

@@ -67,6 +67,13 @@ const onClick = () => {
bottom: calc(var(--canvas-panel-height-offset, 0px) + var(--spacing-s)); bottom: calc(var(--canvas-panel-height-offset, 0px) + var(--spacing-s));
right: var(--spacing-s); right: var(--spacing-s);
z-index: var(--z-index-ask-assistant-floating-button); z-index: var(--z-index-ask-assistant-floating-button);
/* Prevent overlap with 'Execute Workflow' / 'Open Chat' buttons on small screens */
@include mixins.breakpoint('sm-only') {
bottom: calc(
var(--canvas-panel-height-offset, 0px) + var(--spacing-s) + var(--spacing-xs) + 42px
);
}
} }
.tooltip { .tooltip {