This commit is contained in:
Baobhan Sith
2025-04-18 00:38:02 +08:00
parent d3f635d94a
commit fdc613e12d
3 changed files with 52 additions and 3 deletions
@@ -37,7 +37,7 @@ const sendCommand = () => {
display: flex;
align-items: center;
padding: 5px 0px;
background-color: var(--header-bg-color); /* Use theme variable */
background-color: var(--app-bg-color); /* Use theme variable */
min-height: 30px; /* 保证一定高度 */
}
@@ -3,7 +3,6 @@ import { computed, defineAsyncComponent, type PropType, type Component } from 'v
// 添加依赖 font-awesome
import '@fortawesome/fontawesome-free/css/all.min.css';
import { Splitpanes, Pane } from 'splitpanes';
import 'splitpanes/dist/splitpanes.css'; // 引入 splitpanes 样式
import { useLayoutStore, type LayoutNode, type PaneName } from '../stores/layout.store';
import { useSessionStore } from '../stores/session.store';
import { storeToRefs } from 'pinia';