hds-web 1.23.2 → 1.23.4

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.23.2",
3
+ "version": "1.23.4",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -6,7 +6,7 @@ import { Icon } from "../../common-components";
6
6
  export default function StoryCardXL(props) {
7
7
  return (
8
8
  <>
9
- <div className="flex flex-col-reverse px-6 py-10 tb-l:px-0 tb-l:py-0 tb-l:flex-row tb-l:gap-10 db:gap-32 tb-l:max-w-7xl min-h-[518px]">
9
+ <div className="flex flex-col-reverse px-6 py-10 tb-l:px-0 tb-l:py-0 tb-l:flex-row tb-l:gap-10 db:gap-32 tb-l:max-w-7xl min-h-[742px]">
10
10
 
11
11
  <div className="flex flex-col tb-l:pl-20 tb-l:pt-14 tb-l:pb-14">
12
12
  {
@@ -16,7 +16,7 @@ export default function StoryCardXL(props) {
16
16
  }
17
17
  {props.brandImageURL &&
18
18
  props.brandImageAlt && (
19
- <div className="tb-l:flex hidden -ml-2 justify-start">
19
+ <div className="tb-l:flex hidden -ml-2 pb-1 justify-start">
20
20
  <img src={props.brandImageURL} alt={props.brandImageAlt} className="max-h-[64px]" />
21
21
  </div>
22
22
  )
@@ -29,7 +29,7 @@ export default function StoryCardXL(props) {
29
29
  {props.heroList &&
30
30
  (
31
31
  <div>
32
- <div className="flex flex-col pt-6 tb:pt-0 gap-4">
32
+ <div className="flex flex-col pt-6 tb-l:pt-0 gap-4">
33
33
  {props.heroList.map((value, index) => (
34
34
  <div key={index} className='flex gap-5'>
35
35
  <Icon
@@ -565,14 +565,14 @@ V3Header.defaultProps = {
565
565
  description: '',
566
566
  href: '/graphql/database',
567
567
  icon: 'database01',
568
- name: 'All databases',
568
+ name: 'All Databases',
569
569
  strokeClass: 'stroke-neutral-500'
570
570
  },
571
571
  {
572
572
  description: '',
573
573
  href: '/graphql/database?category=planned',
574
574
  icon: 'checksquare',
575
- name: 'Planned databases',
575
+ name: 'Planned Databases',
576
576
  strokeClass: 'stroke-neutral-500'
577
577
  },
578
578
  ],
@@ -1812,6 +1812,10 @@ select{
1812
1812
  min-height: 200px;
1813
1813
  }
1814
1814
 
1815
+ .min-h-\[742px\]{
1816
+ min-height: 742px;
1817
+ }
1818
+
1815
1819
  .\!w-full{
1816
1820
  width: 100% !important;
1817
1821
  }