hds-web 1.27.0 → 1.27.1
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 +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/components/Hero/herolinkcard.js +1 -1
- package/src/styles/tailwind.css +8 -0
package/package.json
CHANGED
@@ -63,7 +63,7 @@ export default function HeroLinkCard(props) {
|
|
63
63
|
const LinkCardsFn = (props) => {
|
64
64
|
return (
|
65
65
|
props.linkCards && (
|
66
|
-
<div className="flex
|
66
|
+
<div className="flex tb:justify-center overflow-auto no-scrollbar db:overflow-visible scrollbar-hide flex-row mt-10 tb:mt-12 db:mt-16 gap-6 tb:flex-row ">
|
67
67
|
{props.linkCards.map((card, index) => (
|
68
68
|
<div key={index} className={`${HDSColor(card.cardBorderClass)} ${HDSColor(card.cardBgColor)} ${HDSColor(card.cardHoverBg)} transition-all ease-out duration-300 hover:shadow-2xl hover:border-opacity-0 border rounded-2xl w-full min-w-[11.5rem] max-w-[22.313rem]`}>
|
69
69
|
<LinkCard
|
package/src/styles/tailwind.css
CHANGED
@@ -10876,6 +10876,10 @@ select{
|
|
10876
10876
|
margin-top: -4px;
|
10877
10877
|
}
|
10878
10878
|
|
10879
|
+
.tb\:mt-12{
|
10880
|
+
margin-top: 3rem;
|
10881
|
+
}
|
10882
|
+
|
10879
10883
|
.tb\:block{
|
10880
10884
|
display: block;
|
10881
10885
|
}
|
@@ -12307,6 +12311,10 @@ select{
|
|
12307
12311
|
margin-top: 0px;
|
12308
12312
|
}
|
12309
12313
|
|
12314
|
+
.db\:mt-16{
|
12315
|
+
margin-top: 4rem;
|
12316
|
+
}
|
12317
|
+
|
12310
12318
|
.db\:block{
|
12311
12319
|
display: block;
|
12312
12320
|
}
|