nestiq-component-library 1.1.133 → 1.1.135
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.
|
@@ -285,7 +285,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
285
285
|
<span className="fw-bold">Herr Florian Gauss</span>
|
|
286
286
|
<span>Immogart UGh</span>
|
|
287
287
|
<button
|
|
288
|
-
className="kontactbutton text-light "
|
|
288
|
+
className="kontactbutton text-light align-self-center"
|
|
289
289
|
onClick={handleMessagPopUp}
|
|
290
290
|
role="button"
|
|
291
291
|
>
|
|
@@ -122,11 +122,13 @@ export default function PropertyImageList(prop: PopupProps) {
|
|
|
122
122
|
});
|
|
123
123
|
}}
|
|
124
124
|
role="button"
|
|
125
|
+
style={{ overflow: "hidden" }}
|
|
125
126
|
>
|
|
126
127
|
<img
|
|
127
128
|
src={picture.url}
|
|
128
129
|
alt={`Image ${index + 1}`}
|
|
129
130
|
className="col-12 h-100 rounded-3 object-fit-cover"
|
|
131
|
+
style={{ overflow: "hidden" }}
|
|
130
132
|
/>
|
|
131
133
|
</div>
|
|
132
134
|
))}
|
|
@@ -157,7 +159,7 @@ export default function PropertyImageList(prop: PopupProps) {
|
|
|
157
159
|
onClick={toggleAllPhotos}
|
|
158
160
|
>
|
|
159
161
|
<div className="border col-lg-12 h-100 d-flex flex-column listImageButton border-0 rounded-3">
|
|
160
|
-
<img src={iconGallery} alt="Gallery Icon"
|
|
162
|
+
<img src={iconGallery} alt="Gallery Icon" />
|
|
161
163
|
<span className="listImgText">Alle Fotos</span>
|
|
162
164
|
</div>
|
|
163
165
|
</div>
|