nestiq-component-library 1.1.115 → 1.1.117
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.
|
@@ -110,10 +110,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
110
110
|
|
|
111
111
|
return (
|
|
112
112
|
<div className="d-flex flex-row property-card">
|
|
113
|
-
<div
|
|
114
|
-
className="d-flex flex-column col-md-6 col-lg-6"
|
|
115
|
-
onClick={props.onClick}
|
|
116
|
-
>
|
|
113
|
+
<div className="d-flex flex-column col-md-6 col-lg-6">
|
|
117
114
|
<div
|
|
118
115
|
key={props.property.id}
|
|
119
116
|
className="card-bod position-relative cardStyles h-100 w-100"
|
|
@@ -124,10 +121,10 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
124
121
|
maxWidth: "640",
|
|
125
122
|
}}
|
|
126
123
|
>
|
|
127
|
-
<div className="d-flex flex-row justify-content-between
|
|
124
|
+
<div className="d-flex flex-row col-12 justify-content-between ">
|
|
128
125
|
<div
|
|
129
|
-
className="d-
|
|
130
|
-
style={{
|
|
126
|
+
className="d-felx align-self-start justify-items-start "
|
|
127
|
+
style={{ left: "16px" }}
|
|
131
128
|
onClick={() => handleArrowClickInMainImage("left")}
|
|
132
129
|
role="button"
|
|
133
130
|
>
|
|
@@ -135,13 +132,13 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
135
132
|
</div>
|
|
136
133
|
<div></div>
|
|
137
134
|
<div
|
|
138
|
-
className="d-flex "
|
|
135
|
+
className="d-flex align-self-end justify-items-end me-4"
|
|
139
136
|
onClick={() => handleArrowClickInMainImage("right")}
|
|
140
137
|
role="button"
|
|
141
138
|
>
|
|
142
139
|
<img
|
|
143
140
|
src={arrowRight}
|
|
144
|
-
style={{
|
|
141
|
+
style={{ right: "16px" }}
|
|
145
142
|
/>
|
|
146
143
|
</div>
|
|
147
144
|
</div>
|
|
@@ -172,6 +169,7 @@ export default function PropertyCard(props: PopupProps) {
|
|
|
172
169
|
paddingLeft: "32px",
|
|
173
170
|
paddingTop: "32px",
|
|
174
171
|
}}
|
|
172
|
+
onClick={props.onClick}
|
|
175
173
|
>
|
|
176
174
|
{props.property.expose?.title}
|
|
177
175
|
</span>
|