diff --git a/components/ts_webui/web/css/style.css b/components/ts_webui/web/css/style.css index 24294c4..724024a 100644 --- a/components/ts_webui/web/css/style.css +++ b/components/ts_webui/web/css/style.css @@ -1590,7 +1590,7 @@ button.btn-gray:hover, .section h2 { margin-bottom: 16px; - padding-bottom: 14px; + padding-bottom: 8px; border-bottom: 1px solid var(--border); color: var(--text-primary); font-size: 0.9375rem; @@ -7504,6 +7504,7 @@ button.btn-gray:hover, display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; + margin-top: 10px; /* 与 quick-actions-grid 的 padding-bottom 对齐,使分隔线上下间距一致 */ } @media (max-width: 1200px) { diff --git a/components/ts_webui/web/js/terminal.js b/components/ts_webui/web/js/terminal.js index e84c96f..8b4475a 100644 --- a/components/ts_webui/web/js/terminal.js +++ b/components/ts_webui/web/js/terminal.js @@ -128,7 +128,7 @@ class WebTerminal { // 显示欢迎信息 this.writeln('\x1b[1;36m╔══════════════════════════════════════════╗\x1b[0m'); - this.writeln('\x1b[1;36m║\x1b[0m \x1b[1;33m⛰️ TianshanOS Web Terminal\x1b[0m \x1b[1;36m║\x1b[0m'); + this.writeln('\x1b[1;36m║\x1b[0m \x1b[1;33mTianshanOS Web Terminal\x1b[0m \x1b[1;36m║\x1b[0m'); this.writeln('\x1b[1;36m╚══════════════════════════════════════════╝\x1b[0m'); this.writeln(''); this.writeln(typeof t === 'function' ? t('terminal.connecting') : '正在连接到设备...');