anentrypoint-design 0.0.26 → 0.0.27
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/247420.app.js +1 -1
- package/dist/247420.css +15 -7
- package/dist/247420.js +3 -3
- package/package.json +1 -1
- package/src/components.js +1 -1
package/dist/247420.css
CHANGED
|
@@ -1521,19 +1521,28 @@
|
|
|
1521
1521
|
|
|
1522
1522
|
.ds-247420 .chat-msg {
|
|
1523
1523
|
display: grid;
|
|
1524
|
-
grid-template-columns: 32px 1fr;
|
|
1524
|
+
grid-template-columns: 32px minmax(0, 1fr);
|
|
1525
1525
|
gap: 10px;
|
|
1526
|
-
align-items:
|
|
1526
|
+
align-items: start;
|
|
1527
1527
|
max-width: 92%;
|
|
1528
1528
|
}
|
|
1529
1529
|
.ds-247420 .chat-msg.you {
|
|
1530
|
-
grid-template-columns: 1fr 32px;
|
|
1530
|
+
grid-template-columns: minmax(0, 1fr) 32px;
|
|
1531
1531
|
margin-left: auto;
|
|
1532
|
-
|
|
1532
|
+
justify-self: end;
|
|
1533
1533
|
}
|
|
1534
|
+
.ds-247420 .chat-msg.you .chat-stack { align-items: flex-end; }
|
|
1534
1535
|
.ds-247420 .chat-msg.you .chat-bubble { background: var(--panel-accent); color: var(--panel-accent-fg); border-radius: 18px 18px 4px 18px; }
|
|
1535
1536
|
.ds-247420 .chat-msg.you .chat-meta { justify-content: flex-end; }
|
|
1536
1537
|
|
|
1538
|
+
.ds-247420 .chat-stack {
|
|
1539
|
+
display: flex;
|
|
1540
|
+
flex-direction: column;
|
|
1541
|
+
align-items: flex-start;
|
|
1542
|
+
gap: 4px;
|
|
1543
|
+
min-width: 0;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1537
1546
|
.ds-247420 .chat-avatar {
|
|
1538
1547
|
width: 32px; height: 32px;
|
|
1539
1548
|
border-radius: 999px;
|
|
@@ -1559,14 +1568,13 @@
|
|
|
1559
1568
|
line-height: 1.5;
|
|
1560
1569
|
text-align: left;
|
|
1561
1570
|
white-space: pre-wrap;
|
|
1562
|
-
|
|
1571
|
+
overflow-wrap: anywhere;
|
|
1572
|
+
max-width: 100%;
|
|
1563
1573
|
}
|
|
1564
|
-
.ds-247420 .chat-msg.you .chat-bubble { text-align: left; display: inline-block; }
|
|
1565
1574
|
|
|
1566
1575
|
.ds-247420 .chat-meta {
|
|
1567
1576
|
display: flex;
|
|
1568
1577
|
gap: 6px;
|
|
1569
|
-
margin-top: 4px;
|
|
1570
1578
|
font-family: var(--ff-mono);
|
|
1571
1579
|
font-size: 10.5px;
|
|
1572
1580
|
color: var(--panel-text-3);
|