hds-web 1.27.1 → 1.27.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.27.1",
3
+ "version": "1.27.2",
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 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 ">
66
+ <div className="flex tb-m: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
@@ -11818,6 +11818,10 @@ select{
11818
11818
  justify-content: flex-start;
11819
11819
  }
11820
11820
 
11821
+ .tb-m\:justify-center{
11822
+ justify-content: center;
11823
+ }
11824
+
11821
11825
  .tb-m\:gap-16{
11822
11826
  gap: 4rem;
11823
11827
  }