mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Prevent Ask Assistant button overlapping other buttons (#16066)
This commit is contained in:
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user