@tmlmobilidade/ui 20250920.1941.29 → 20250922.953.29
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/index.css +14 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +8 -4
- package/dist/src/components/comments/CommentItem/index.js +2 -2
- package/dist/src/components/comments/CommentItem/index.js.map +1 -1
- package/dist/src/components/comments/CommentList/index.js +2 -3
- package/dist/src/components/comments/CommentList/index.js.map +1 -1
- package/dist/styles-no-reset.css +14 -1
- package/dist/styles.css +15 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -1518,6 +1518,7 @@
|
|
1518
1518
|
|
1519
1519
|
.styles-module_icon__wl1ta {
|
1520
1520
|
z-index: 2;
|
1521
|
+
margin-top: 10px;
|
1521
1522
|
background-color: var(--color-system-background-100);
|
1522
1523
|
}
|
1523
1524
|
|
@@ -1528,7 +1529,11 @@
|
|
1528
1529
|
background-color: var(--color-system-border-100);
|
1529
1530
|
}
|
1530
1531
|
|
1531
|
-
.styles-module_item__S7RQD:last-child .styles-module_path__JfW5D {
|
1532
|
+
.styles-module_item__S7RQD[data-reverse="false"]:last-child .styles-module_path__JfW5D {
|
1533
|
+
display: none;
|
1534
|
+
}
|
1535
|
+
|
1536
|
+
.styles-module_item__S7RQD[data-reverse="true"]:first-child .styles-module_path__JfW5D {
|
1532
1537
|
display: none;
|
1533
1538
|
}
|
1534
1539
|
|
@@ -1562,6 +1567,13 @@
|
|
1562
1567
|
position: relative;
|
1563
1568
|
display: flex;
|
1564
1569
|
flex-direction: column;
|
1570
|
+
width: 100%;
|
1571
|
+
padding: var(--size-spacing-xs) 0;
|
1572
|
+
overflow-y: scroll;
|
1573
|
+
|
1574
|
+
&[data-reverse="true"] {
|
1575
|
+
flex-direction: column-reverse;
|
1576
|
+
}
|
1565
1577
|
}
|
1566
1578
|
|
1567
1579
|
.styles-module_label__SjHA2 {
|
@@ -11155,6 +11167,7 @@ body {
|
|
11155
11167
|
margin: 0;
|
11156
11168
|
color: var(--color-system-text-100);
|
11157
11169
|
scroll-padding-top: 80px;
|
11170
|
+
scrollbar-color: var(--color-primary) var(--color-system-background-200);
|
11158
11171
|
background-color: var(--color-system-background-200);
|
11159
11172
|
scroll-behavior: smooth;
|
11160
11173
|
}
|