hds-web 1.25.5 → 1.25.6
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 +1 -1
- package/dist/index.es.css +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/modules/TextCard/textCard.js +2 -2
- package/src/styles/tailwind.css +5 -0
package/package.json
CHANGED
@@ -58,7 +58,7 @@ export default function TextCard(props) {
|
|
58
58
|
<Typography
|
59
59
|
key={i}
|
60
60
|
textStyle="body1"
|
61
|
-
className="pb-6 pr-8 max-w-[412px] [&>p]:pb-2 [&>p]:text-neutral-600 last:[&>p]:pb-0 [&>ul]:ps-4 [&>ul>li]:list-disc [&>ul>li]:pb-2 last:[&>ul>li]:pb-0 [&>p>a]:text-blue-600">
|
61
|
+
className="pb-6 pr-8 max-w-[412px] [&>p]:pb-2 [&>p]:text-neutral-600 last:[&>p]:pb-0 [&>ul]:ps-4 [&>ul>li]:list-disc [&>ul>li]:pb-2 last:[&>ul>li]:pb-0 [&>p>a]:text-blue-600 [&>ul>li]:text-neutral-600">
|
62
62
|
<ReactMarkdown>
|
63
63
|
{desc.description}
|
64
64
|
</ReactMarkdown>
|
@@ -206,7 +206,7 @@ export default function TextCard(props) {
|
|
206
206
|
<Typography
|
207
207
|
key={i}
|
208
208
|
textStyle="body1"
|
209
|
-
className="pb-6 pr-8 max-w-[412px] [&>p]:pb-2 last:[&>p]:pb-0 [&>p]:text-neutral-600 [&>ul]:ps-4 [&>ul>li]:list-disc [&>ul>li]:pb-2 last:[&>ul>li]:pb-0 [&>p>a]:text-blue-600">
|
209
|
+
className="pb-6 pr-8 max-w-[412px] [&>p]:pb-2 last:[&>p]:pb-0 [&>p]:text-neutral-600 [&>ul]:ps-4 [&>ul>li]:list-disc [&>ul>li]:pb-2 last:[&>ul>li]:pb-0 [&>p>a]:text-blue-600 [&>ul>li]:text-neutral-600">
|
210
210
|
<ReactMarkdown>
|
211
211
|
{desc.description}
|
212
212
|
</ReactMarkdown>
|
package/src/styles/tailwind.css
CHANGED
@@ -12775,6 +12775,11 @@ select{
|
|
12775
12775
|
padding-bottom: 0.5rem;
|
12776
12776
|
}
|
12777
12777
|
|
12778
|
+
.\[\&\>ul\>li\]\:text-neutral-600>ul>li{
|
12779
|
+
--tw-text-opacity: 1;
|
12780
|
+
color: rgb(77 87 97 / var(--tw-text-opacity));
|
12781
|
+
}
|
12782
|
+
|
12778
12783
|
.\[\&\>ul\>li\]\:last\:pb-0:last-child>ul>li{
|
12779
12784
|
padding-bottom: 0px;
|
12780
12785
|
}
|