nestiq-component-library 1.1.138 → 1.1.139
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.es.js +13 -4
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +13 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/NewPropertyCard/NewPropertyCard.tsx +18 -7
|
@@ -194,7 +194,13 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
194
194
|
/>
|
|
195
195
|
</div>
|
|
196
196
|
</div>
|
|
197
|
-
<div
|
|
197
|
+
<div
|
|
198
|
+
style={{
|
|
199
|
+
paddingLeft: "32px",
|
|
200
|
+
paddingRight: "32px",
|
|
201
|
+
paddingTop: "32px",
|
|
202
|
+
}}
|
|
203
|
+
>
|
|
198
204
|
{" "}
|
|
199
205
|
<div className="d-flex ">
|
|
200
206
|
<img src={locationIcon} alt="Location Icon" className="Vector" />
|
|
@@ -205,7 +211,11 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
205
211
|
</div>
|
|
206
212
|
<div
|
|
207
213
|
className="d-flex flex-row gap-3 col-6 col-lg-8 justify-content-between "
|
|
208
|
-
style={{
|
|
214
|
+
style={{
|
|
215
|
+
paddingLeft: "32px",
|
|
216
|
+
paddingRight: "32px",
|
|
217
|
+
paddingTop: "32px",
|
|
218
|
+
}}
|
|
209
219
|
>
|
|
210
220
|
<span className="priceValue col-lg-4 col-md-4 col-sm-6 ">
|
|
211
221
|
{formatPrice(props.property?.evaluation?.askingPrice ?? 0)} €
|
|
@@ -236,8 +246,8 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
236
246
|
</span>
|
|
237
247
|
</div>
|
|
238
248
|
<div
|
|
239
|
-
className="labelTopClass d-flex
|
|
240
|
-
style={{
|
|
249
|
+
className="labelTopClass d-flex start-0 col-sm-5 col-lg-8 "
|
|
250
|
+
style={{ padding: "32px" }}
|
|
241
251
|
>
|
|
242
252
|
<div className=" align-items-center d-flex flex-row gap-3">
|
|
243
253
|
{props.property.historicalProtection && (
|
|
@@ -274,7 +284,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
274
284
|
style={{
|
|
275
285
|
paddingLeft: "32px",
|
|
276
286
|
paddingRight: "32px",
|
|
277
|
-
|
|
287
|
+
paddingBottom: "32px",
|
|
278
288
|
}}
|
|
279
289
|
>
|
|
280
290
|
<div className="Frame-136 d-flex flex-row">
|
|
@@ -282,8 +292,8 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
282
292
|
<img src={immooly} alt="Logo" className="immooly" />
|
|
283
293
|
</div>
|
|
284
294
|
<div className="ms-2 d-flex flex-column col-8 justify-content-center align-self-center text-center">
|
|
285
|
-
|
|
286
|
-
|
|
295
|
+
<span className="fw-bold">Herr Florian Gauss</span>
|
|
296
|
+
<span>Immogart UGh</span>
|
|
287
297
|
<button
|
|
288
298
|
className="kontactbutton text-light align-self-center"
|
|
289
299
|
onClick={handleMessagPopUp}
|
|
@@ -304,6 +314,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
304
314
|
paddingLeft: "32px",
|
|
305
315
|
paddingRight: "32px",
|
|
306
316
|
paddingTop: "32px",
|
|
317
|
+
paddingBottom: "32px",
|
|
307
318
|
}}
|
|
308
319
|
>
|
|
309
320
|
<div className="Frame-136 d-flex flex-row">
|