feat: update new feature temp for panel

This commit is contained in:
2025-03-04 01:20:55 +08:00
parent 6e96247b50
commit fd3288cb5b
45 changed files with 2559 additions and 954 deletions

32
template/tailwind.css Normal file
View File

@@ -0,0 +1,32 @@
@import 'tailwindcss';
#ai-root {
width: 100%;
height: 100%;
background-color: #f0f0f0;
position: fixed;
top: 0;
left: 0;
z-index: 900;
}
/* # 背景设置为透明 */
#ai-root {
/* @apply bg-transparent */
@apply border-none box-border border-2 border-gray-300 rounded-md;
@apply pointer-events-none;
}
#ai-root {
.node-editor {
@apply pointer-events-auto;
@apply absolute bottom-0 left-0 w-full h-[20vh] border border-gray-300 shadow-md;
.tiptap {
@apply mx-0 h-full overflow-y-auto;
}
}
#app {
@apply w-full h-full overflow-hidden;
}
}