hds-web 1.27.4 → 1.27.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/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/modules/Events/eventListingCard.js +2 -2
package/package.json
CHANGED
@@ -6,11 +6,11 @@ import { Badges } from "../../components/BadgesCaption";
|
|
6
6
|
export default function EventListingCard(props) {
|
7
7
|
return (
|
8
8
|
<div className="group/eventListing hover:shadow-xl rounded-3xl transition-all duration-300">
|
9
|
-
<div className="self-start">
|
9
|
+
<div className="self-start rounded-t-3xl">
|
10
10
|
{
|
11
11
|
props.eventListingImg && (
|
12
12
|
<div className="">
|
13
|
-
<img src={props.eventListingImg} alt={props.title} className={` rounded-t-3xl
|
13
|
+
<img src={props.eventListingImg} alt={props.title} className={` rounded-t-3xl h-[179px] object-cover ${props.imgBG}`} />
|
14
14
|
</div>
|
15
15
|
)
|
16
16
|
}
|