hds-web 1.26.3 → 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/dist/index.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/HDS/components/BadgesCaption/livestatus.js +1 -1
- package/src/HDS/modules/Events/eventListingCard.js +1 -1
- package/src/styles/tailwind.css +8 -0
package/package.json
CHANGED
@@ -16,7 +16,7 @@ export default function LiveStatus(props) {
|
|
16
16
|
return (
|
17
17
|
<div className={`${bgColorClass} px-3 py-1 rounded-full inline-flex items-center shadow`}>
|
18
18
|
<div className={`${circleBgClass} ${blink} mr-1 w-3 h-3 min-w-[12px] min-h-[12px] rounded-full`}></div>
|
19
|
-
<Typography textStyle="
|
19
|
+
<Typography textStyle="body3c-medium" className={`${textColorClass} `}>{props.statusText}</Typography>
|
20
20
|
</div>
|
21
21
|
);
|
22
22
|
}
|
@@ -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
|
}
|
package/src/styles/tailwind.css
CHANGED
@@ -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
|
}
|