nestiq-component-library 1.1.136 → 1.1.138
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.
|
@@ -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}
|
|
@@ -122,13 +125,11 @@ export default function PropertyImageList(prop: PopupProps) {
|
|
|
122
125
|
});
|
|
123
126
|
}}
|
|
124
127
|
role="button"
|
|
125
|
-
style={{ overflow: "hidden" }}
|
|
126
128
|
>
|
|
127
129
|
<img
|
|
128
130
|
src={picture.url}
|
|
129
131
|
alt={`Image ${index + 1}`}
|
|
130
132
|
className="col-12 h-100 rounded-3 object-fit-cover"
|
|
131
|
-
style={{ overflow: "hidden" }}
|
|
132
133
|
/>
|
|
133
134
|
</div>
|
|
134
135
|
))}
|