nestiq-component-library 1.1.85 → 1.1.87
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
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
color: #1b1b1b;
|
|
9
9
|
}
|
|
10
10
|
.listing-compacts {
|
|
11
|
-
width:
|
|
11
|
+
max-width: 750px;
|
|
12
12
|
align-self: stretch;
|
|
13
13
|
flex-grow: 1;
|
|
14
14
|
display: flex;
|
|
@@ -210,6 +210,9 @@
|
|
|
210
210
|
flex-grow: 0;
|
|
211
211
|
object-fit: contain;
|
|
212
212
|
}
|
|
213
|
+
.card{
|
|
214
|
+
max-width: 750px;
|
|
215
|
+
}
|
|
213
216
|
|
|
214
217
|
.Price {
|
|
215
218
|
font-size: 26px;
|
|
@@ -108,7 +108,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
108
108
|
};
|
|
109
109
|
|
|
110
110
|
return (
|
|
111
|
-
<div className="d-flex flex-row ">
|
|
111
|
+
<div className="d-flex flex-row card">
|
|
112
112
|
<div className="d-flex flex-column col-md-6 col-lg-12" onClick={props.onClick}>
|
|
113
113
|
<div
|
|
114
114
|
key={props.property.id}
|
|
@@ -181,7 +181,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
181
181
|
</span>
|
|
182
182
|
</div>
|
|
183
183
|
</div>
|
|
184
|
-
<div className="d-flex flex-row gap-3 col-6 col-lg-8 ">
|
|
184
|
+
<div className="d-flex flex-row gap-3 col-6 col-lg-8 gap-3 ">
|
|
185
185
|
<span className="value col-lg-3 col-md-4 col-sm-6 ">
|
|
186
186
|
{formatPrice(props.property?.evaluation?.askingPrice ?? 0)} €
|
|
187
187
|
<br />
|