@convergeapp/chat-widget 1.3.1 → 1.3.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.
- package/dist/widget.js +14 -15
- package/package.json +1 -1
package/dist/widget.js
CHANGED
|
@@ -1566,24 +1566,23 @@ Please report this to https://github.com/markedjs/marked.`,i){let n="<p>An error
|
|
|
1566
1566
|
.faq-list {
|
|
1567
1567
|
display: flex;
|
|
1568
1568
|
flex-direction: column;
|
|
1569
|
-
gap: 0.75rem;
|
|
1570
1569
|
overflow-y: auto;
|
|
1571
1570
|
flex: 1;
|
|
1572
1571
|
min-height: 0;
|
|
1573
1572
|
padding-bottom: 0.5rem;
|
|
1573
|
+
border: 1px solid #e4e4e7;
|
|
1574
|
+
border-radius: 0.75rem;
|
|
1574
1575
|
}
|
|
1575
1576
|
|
|
1576
1577
|
.faq-item {
|
|
1577
1578
|
background: white;
|
|
1578
|
-
border-radius: 0.5rem;
|
|
1579
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
|
|
1580
1579
|
overflow: hidden;
|
|
1581
|
-
transition: box-shadow 0.3s ease;
|
|
1582
1580
|
flex-shrink: 0;
|
|
1581
|
+
border-bottom: 1px solid #e4e4e7;
|
|
1583
1582
|
}
|
|
1584
1583
|
|
|
1585
|
-
.faq-item:
|
|
1586
|
-
|
|
1584
|
+
.faq-item:last-child {
|
|
1585
|
+
border-bottom: none;
|
|
1587
1586
|
}
|
|
1588
1587
|
|
|
1589
1588
|
.faq-question-button {
|
|
@@ -1592,17 +1591,17 @@ Please report this to https://github.com/markedjs/marked.`,i){let n="<p>An error
|
|
|
1592
1591
|
align-items: center;
|
|
1593
1592
|
justify-content: space-between;
|
|
1594
1593
|
gap: 0.75rem;
|
|
1595
|
-
padding: 1rem
|
|
1594
|
+
padding: 0.875rem 1rem;
|
|
1596
1595
|
background: none;
|
|
1597
1596
|
border: none;
|
|
1598
1597
|
cursor: pointer;
|
|
1599
1598
|
text-align: left;
|
|
1600
|
-
transition: color 0.
|
|
1599
|
+
transition: background-color 0.15s ease;
|
|
1601
1600
|
color: #18181b;
|
|
1602
1601
|
}
|
|
1603
1602
|
|
|
1604
1603
|
.faq-question-button:hover {
|
|
1605
|
-
color:
|
|
1604
|
+
background-color: #fafafa;
|
|
1606
1605
|
}
|
|
1607
1606
|
|
|
1608
1607
|
.faq-question-button:focus {
|
|
@@ -1611,15 +1610,15 @@ Please report this to https://github.com/markedjs/marked.`,i){let n="<p>An error
|
|
|
1611
1610
|
|
|
1612
1611
|
.faq-question-text {
|
|
1613
1612
|
flex: 1;
|
|
1614
|
-
font-size: 0.
|
|
1615
|
-
font-weight:
|
|
1613
|
+
font-size: 0.875rem;
|
|
1614
|
+
font-weight: 500;
|
|
1616
1615
|
line-height: 1.4;
|
|
1617
1616
|
}
|
|
1618
1617
|
|
|
1619
1618
|
.faq-chevron {
|
|
1620
|
-
width: 1.
|
|
1621
|
-
height: 1.
|
|
1622
|
-
color:
|
|
1619
|
+
width: 1.125rem;
|
|
1620
|
+
height: 1.125rem;
|
|
1621
|
+
color: #a1a1aa;
|
|
1623
1622
|
flex-shrink: 0;
|
|
1624
1623
|
transition: transform 0.3s ease;
|
|
1625
1624
|
}
|
|
@@ -1643,7 +1642,7 @@ Please report this to https://github.com/markedjs/marked.`,i){let n="<p>An error
|
|
|
1643
1642
|
}
|
|
1644
1643
|
|
|
1645
1644
|
.faq-answer-content {
|
|
1646
|
-
padding: 0
|
|
1645
|
+
padding: 0.875rem;
|
|
1647
1646
|
font-size: 0.875rem;
|
|
1648
1647
|
color: #52525b;
|
|
1649
1648
|
line-height: 1.6;
|
package/package.json
CHANGED