@luckydraw/cumulus 0.18.1 → 0.18.2
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.
|
@@ -5,9 +5,12 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
6
6
|
<title>Cumulus Chat</title>
|
|
7
7
|
<style>
|
|
8
|
+
*, *::before, *::after { box-sizing: border-box; }
|
|
8
9
|
html, body {
|
|
9
10
|
margin: 0;
|
|
10
11
|
padding: 0;
|
|
12
|
+
width: 100%;
|
|
13
|
+
max-width: 100vw;
|
|
11
14
|
height: 100%;
|
|
12
15
|
background: #1e1e1e;
|
|
13
16
|
overflow: hidden;
|
|
@@ -426,7 +426,7 @@
|
|
|
426
426
|
/* ── Standalone layout ── */
|
|
427
427
|
'.cumulus-standalone-root {',
|
|
428
428
|
' display: flex; flex-direction: row;',
|
|
429
|
-
' width: 100%; height: 100vh; height: 100dvh;',
|
|
429
|
+
' width: 100%; max-width: 100vw; height: 100vh; height: 100dvh;',
|
|
430
430
|
' background: #1e1e1e; overflow: hidden;',
|
|
431
431
|
'}',
|
|
432
432
|
|
|
@@ -522,7 +522,7 @@
|
|
|
522
522
|
/* ── Content area (holds panels) ── */
|
|
523
523
|
'.cumulus-content-area {',
|
|
524
524
|
' flex: 1; display: flex; flex-direction: row;',
|
|
525
|
-
' overflow: hidden;',
|
|
525
|
+
' overflow: hidden; min-width: 0;',
|
|
526
526
|
'}',
|
|
527
527
|
|
|
528
528
|
/* ── Thread panel (inside content area) ── */
|
|
@@ -1722,7 +1722,7 @@
|
|
|
1722
1722
|
|
|
1723
1723
|
// App layout — shown after auth
|
|
1724
1724
|
var appLayout = document.createElement('div');
|
|
1725
|
-
appLayout.style.cssText = 'display:none; flex-direction:column; width:100%; height:100vh; height:100dvh; overflow:hidden;';
|
|
1725
|
+
appLayout.style.cssText = 'display:none; flex-direction:column; width:100%; max-width:100vw; height:100vh; height:100dvh; overflow:hidden;';
|
|
1726
1726
|
|
|
1727
1727
|
// Top bar
|
|
1728
1728
|
var topbar = document.createElement('div');
|