nestiq-component-library 1.1.135 → 1.1.137
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
|
@@ -109,7 +109,10 @@ export default function PropertyImageList(prop: PopupProps) {
|
|
|
109
109
|
ref={imageListRef}
|
|
110
110
|
>
|
|
111
111
|
{prop.pictureUrls.length > 0 && (
|
|
112
|
-
<div
|
|
112
|
+
<div
|
|
113
|
+
className="col-lg-5 h-100 d-flex gap-2 flex-row rounded-3"
|
|
114
|
+
style={{ overflow: "hidden" }}
|
|
115
|
+
>
|
|
113
116
|
{prop.pictureUrls.map((picture, index) => (
|
|
114
117
|
<div
|
|
115
118
|
key={index}
|
|
@@ -128,7 +131,6 @@ export default function PropertyImageList(prop: PopupProps) {
|
|
|
128
131
|
src={picture.url}
|
|
129
132
|
alt={`Image ${index + 1}`}
|
|
130
133
|
className="col-12 h-100 rounded-3 object-fit-cover"
|
|
131
|
-
style={{ overflow: "hidden" }}
|
|
132
134
|
/>
|
|
133
135
|
</div>
|
|
134
136
|
))}
|