@wendongfly/myhi 1.3.113 → 1.3.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chat.html +5 -2
- package/package.json +1 -1
package/dist/chat.html
CHANGED
|
@@ -313,7 +313,10 @@
|
|
|
313
313
|
.mem-title { color: var(--blue); font-weight: 600; }
|
|
314
314
|
.mem-desc { display: block; color: var(--muted); font-size: 0.68rem; font-weight: 400; margin-top: 0.12rem; line-height: 1.4; white-space: normal; }
|
|
315
315
|
/* PC 上记忆面板加宽,别挤在窄底 sheet 里 */
|
|
316
|
-
|
|
316
|
+
/* 记忆面板改成近全屏大面板(居中而非贴底),不再挤在窄弹窗里 */
|
|
317
|
+
#memory-sheet.action-sheet.open { align-items: center; }
|
|
318
|
+
#memory-sheet .action-sheet-box { width: 94vw; max-width: 980px; border-radius: 14px 14px 14px 14px; padding-bottom: 0.75rem; }
|
|
319
|
+
#memory-content { flex: 1; min-height: 0; }
|
|
317
320
|
.slash-inp { width: 100%; padding: 0.65rem 0.8rem; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 0.9rem; outline: none; }
|
|
318
321
|
.slash-inp:focus { border-color: var(--purple); }
|
|
319
322
|
|
|
@@ -609,7 +612,7 @@
|
|
|
609
612
|
|
|
610
613
|
<div id="memory-sheet" class="action-sheet">
|
|
611
614
|
<div class="action-sheet-backdrop" onclick="closeMemorySheet()"></div>
|
|
612
|
-
<div class="action-sheet-box" style="max-height:
|
|
615
|
+
<div class="action-sheet-box" style="height:90vh;max-height:90vh;display:flex;flex-direction:column">
|
|
613
616
|
<div class="action-sheet-title">Claude 记忆</div>
|
|
614
617
|
<div id="memory-content" style="flex:1;overflow-y:auto;padding:0.3rem 0;font-size:0.78rem;color:var(--text2);scrollbar-width:thin">
|
|
615
618
|
<div style="text-align:center;color:var(--muted);padding:2rem 0">加载中...</div>
|
package/package.json
CHANGED