nestiq-component-library 1.1.134 → 1.1.136

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.
@@ -38,6 +38,7 @@
38
38
  height: 20px;
39
39
  }
40
40
 
41
+
41
42
  .imagesArray {
42
43
  background-size: "cover" !important;
43
44
  }
@@ -74,3 +75,9 @@
74
75
  width: 58vw;
75
76
  }
76
77
  }
78
+ *{
79
+ -ms-overflow-style: none;
80
+ }
81
+ ::-webkit-scrollbar {
82
+ display: none;
83
+ }
@@ -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>