@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 +16 -21
- package/cli/web-ui.js +2 -1
- package/package.json +1 -1
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:
|
|
79
|
+
.app { padding: 0; height: 100%; }
|
|
76
80
|
|
|
77
81
|
.frame {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
82
|
+
width: 100vw;
|
|
83
|
+
height: 100vh;
|
|
84
|
+
margin: 0;
|
|
85
|
+
border-radius: 0;
|
|
81
86
|
overflow: hidden;
|
|
82
|
-
box-shadow:
|
|
83
|
-
border:
|
|
84
|
-
background:
|
|
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)
|
|
90
|
-
height:
|
|
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
|
-
|
|
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