pi-sdk-web 0.5.5 → 0.5.6
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/static/style.css +5 -1
- package/package.json +1 -1
package/dist/static/style.css
CHANGED
|
@@ -248,12 +248,16 @@ body {
|
|
|
248
248
|
overflow-x: hidden;
|
|
249
249
|
padding: 8px;
|
|
250
250
|
min-width: 0;
|
|
251
|
+
/* Bordered, rounded message area (distinct region vs sidebar/footer) */
|
|
252
|
+
border: 1px solid var(--border);
|
|
253
|
+
border-radius: 6px;
|
|
254
|
+
margin: 3px 0;
|
|
251
255
|
}
|
|
252
256
|
|
|
253
257
|
#sidebar {
|
|
254
258
|
width: 200px;
|
|
255
259
|
flex-shrink: 0;
|
|
256
|
-
border-
|
|
260
|
+
/* scroll-view now has its own right border - no duplicate divider */
|
|
257
261
|
padding: 8px;
|
|
258
262
|
overflow-y: auto;
|
|
259
263
|
}
|