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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.27.0",
3
+ "version": "1.27.1",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -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 px-8 tb:px-0 tb:justify-center overflow-auto no-scrollbar db:overflow-visible scrollbar-hide flex-row mt-16 gap-6 tb:flex-row ">
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
@@ -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
  }