@cccarv82/freya 1.0.55 → 1.0.56

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/cli/web-ui.css CHANGED
@@ -61,6 +61,10 @@
61
61
  [data-theme="dark"] *::-webkit-scrollbar-thumb:hover { background: rgba(229,231,235,.26); }
62
62
 
63
63
 
64
+ html, body {
65
+ height: 100%;
66
+ }
67
+
64
68
  body {
65
69
  margin: 0;
66
70
  font-family: var(--sans);
@@ -72,28 +76,28 @@ body {
72
76
  background: radial-gradient(800px 360px at 65% 10%, rgba(45,212,191,.10), transparent 55%), var(--bg);
73
77
  }
74
78
 
75
- .app { padding: 18px; }
79
+ .app { padding: 0; height: 100%; }
76
80
 
77
81
  .frame {
78
- max-width: 1400px;
79
- margin: 0 auto;
80
- border-radius: 22px;
82
+ width: 100vw;
83
+ height: 100vh;
84
+ margin: 0;
85
+ border-radius: 0;
81
86
  overflow: hidden;
82
- box-shadow: var(--shadow);
83
- border: 1px solid var(--line);
84
- background: var(--paper2);
87
+ box-shadow: none;
88
+ border: none;
89
+ background: transparent;
85
90
  }
86
91
 
87
92
  .shell {
88
93
  display: grid;
89
- grid-template-columns: 72px minmax(520px, 1fr) 360px;
90
- height: calc(100vh - 36px);
94
+ grid-template-columns: 72px minmax(520px, 1fr);
95
+ height: 100vh;
91
96
  min-height: 0;
92
97
  }
93
98
 
94
99
  @media (max-width: 1200px) {
95
100
  .shell { grid-template-columns: 72px 1fr; }
96
- .chatPane { display: none; }
97
101
  }
98
102
 
99
103
  @media (max-width: 860px) {
@@ -392,20 +396,11 @@ textarea:focus { box-shadow: var(--ring); border-color: rgba(45,212,191,.35); }
392
396
  [data-theme="dark"] .md-code{ background: rgba(0,0,0,.22); }
393
397
  .md-sp{ height: 10px; }
394
398
 
395
- /* RIGHT: CHAT */
399
+ /* RIGHT: CHAT (hidden for Perplexity layout) */
396
400
  .chatPane {
397
- border-left: 1px solid var(--line);
398
- background: var(--paper);
399
- display: grid;
400
- grid-template-rows: auto 1fr;
401
- overflow: hidden;
402
- min-height: 0;
401
+ display: none;
403
402
  }
404
403
 
405
- .chatHead { padding: 18px 16px; border-bottom: 1px solid var(--line); }
406
- .chatTitle { font-weight: 800; letter-spacing: -.01em; }
407
- .chatSub { margin-top: 2px; font-size: 12px; color: var(--faint); }
408
-
409
404
  .chatThread {
410
405
  padding: 14px;
411
406
  overflow: auto;
package/cli/web-ui.js CHANGED
@@ -988,7 +988,8 @@
988
988
  }
989
989
 
990
990
  // init
991
- applyTheme(localStorage.getItem('freya.theme') || 'dark');
991
+ applyTheme('dark');
992
+ try { localStorage.setItem('freya.theme', 'dark'); } catch (err) {}
992
993
  $('chipPort').textContent = location.host;
993
994
  loadLocal();
994
995
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cccarv82/freya",
3
- "version": "1.0.55",
3
+ "version": "1.0.56",
4
4
  "description": "Personal AI Assistant with local-first persistence",
5
5
  "scripts": {
6
6
  "health": "node scripts/validate-data.js",