hds-web 1.26.4 → 1.26.5

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.26.4",
3
+ "version": "1.26.5",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -10,7 +10,7 @@ export default function EventListingCard(props) {
10
10
  {
11
11
  props.eventListingImg && (
12
12
  <div>
13
- <img src={props.eventListingImg} alt={props.title} />
13
+ <img src={props.eventListingImg} alt={props.title} className={` border-b border-neutral-200 rounded-t-3xl max-h-[179px] object-contain ${props.imgBG}`} />
14
14
  </div>
15
15
  )
16
16
  }
@@ -1768,6 +1768,10 @@ select{
1768
1768
  max-height: 100vh;
1769
1769
  }
1770
1770
 
1771
+ .max-h-\[179px\]{
1772
+ max-height: 179px;
1773
+ }
1774
+
1771
1775
  .min-h-\[12px\]{
1772
1776
  min-height: 12px;
1773
1777
  }
@@ -2194,6 +2198,10 @@ select{
2194
2198
  max-width: min-content;
2195
2199
  }
2196
2200
 
2201
+ .max-w-\[270px\]{
2202
+ max-width: 270px;
2203
+ }
2204
+
2197
2205
  .flex-1{
2198
2206
  flex: 1 1 0%;
2199
2207
  }