feat(editor): Implement new app layout (#10548)

This commit is contained in:
Milorad FIlipović
2024-08-28 14:01:05 +02:00
committed by GitHub
parent d7241cfc3a
commit 95a9cd2c73
32 changed files with 316 additions and 153 deletions

View File

@@ -67,7 +67,7 @@ function onClose() {
<template>
<SlideTransition>
<n8n-resize-wrapper
v-if="assistantStore.isAssistantOpen"
v-show="assistantStore.isAssistantOpen"
:supported-directions="['left']"
:width="assistantStore.chatWidth"
:class="$style.container"
@@ -95,9 +95,9 @@ function onClose() {
<style module>
.container {
grid-area: rightsidebar;
height: 100%;
z-index: 99999; /* Needs to be high enough so it doesn't get covered by element-ui dialogs */
flex-basis: content;
z-index: 300;
}
.wrapper {