@tmlmobilidade/ui 20250920.1941.29 → 20250920.2339.20
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 +29 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +7 -3
- 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 +29 -1
- package/dist/styles.css +29 -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,29 @@
|
|
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
|
+
scrollbar-color: var(--color-primary) var(--color-primary);
|
1574
|
+
scrollbar-width: thin;
|
1575
|
+
|
1576
|
+
&::-webkit-scrollbar {
|
1577
|
+
width: 8px;
|
1578
|
+
}
|
1579
|
+
|
1580
|
+
&::-webkit-scrollbar-track {
|
1581
|
+
background: var(--color-system-background-100);
|
1582
|
+
}
|
1583
|
+
|
1584
|
+
&::-webkit-scrollbar-thumb {
|
1585
|
+
background-color: var(--color-system-border-100);
|
1586
|
+
border: 2px solid var(--color-system-background-100);
|
1587
|
+
border-radius: 10px;
|
1588
|
+
}
|
1589
|
+
|
1590
|
+
&[data-reverse="true"] {
|
1591
|
+
flex-direction: column-reverse;
|
1592
|
+
}
|
1565
1593
|
}
|
1566
1594
|
|
1567
1595
|
.styles-module_label__SjHA2 {
|