hds-web 1.19.2 → 1.19.3
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/package.json
CHANGED
@@ -28,7 +28,7 @@ export default function FeedbackCard(props) {
|
|
28
28
|
<div className=" self-end">
|
29
29
|
{
|
30
30
|
props.dividerClass && (
|
31
|
-
<div className={`${HDSColor(props.dividerClass)} mb-2`}></div>
|
31
|
+
<div className={`${HDSColor(props.dividerClass)} mb-2 tb:mb-8 `}></div>
|
32
32
|
)
|
33
33
|
}
|
34
34
|
<div className={"tb:flex pt-1 tb:pt-0 items-start" + ((props.dividerClass) ? " pt-6" : "mt-0")}>
|
package/src/styles/tailwind.css
CHANGED
@@ -1459,6 +1459,10 @@ select{
|
|
1459
1459
|
margin-top: 70px;
|
1460
1460
|
}
|
1461
1461
|
|
1462
|
+
.mb-8{
|
1463
|
+
margin-bottom: 2rem;
|
1464
|
+
}
|
1465
|
+
|
1462
1466
|
.line-clamp-3{
|
1463
1467
|
overflow: hidden;
|
1464
1468
|
display: -webkit-box;
|
@@ -10336,6 +10340,10 @@ select{
|
|
10336
10340
|
margin-top: -4px;
|
10337
10341
|
}
|
10338
10342
|
|
10343
|
+
.tb\:mb-8{
|
10344
|
+
margin-bottom: 2rem;
|
10345
|
+
}
|
10346
|
+
|
10339
10347
|
.tb\:block{
|
10340
10348
|
display: block;
|
10341
10349
|
}
|