heroes-of-chess-components 0.6.33 → 0.6.34
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.
|
@@ -178,16 +178,6 @@ const HRaceTable: React.FC<HRaceTableProps> = ({ data, points }) => {
|
|
|
178
178
|
width={"100%"}
|
|
179
179
|
textAlign={"left"}
|
|
180
180
|
/>
|
|
181
|
-
<HTitle
|
|
182
|
-
padding={"1em"}
|
|
183
|
-
text={"Rewards: "}
|
|
184
|
-
color={"purpleMedium"}
|
|
185
|
-
textAlign="center"
|
|
186
|
-
margin="0"
|
|
187
|
-
lineHeight="1.5"
|
|
188
|
-
letterSpacing="normal"
|
|
189
|
-
fontSize={"16px"}
|
|
190
|
-
/>
|
|
191
181
|
<HCoinLabel
|
|
192
182
|
width={"280px"}
|
|
193
183
|
value={knowCoinsAndDiamonds({
|
|
@@ -218,16 +208,13 @@ const HRaceTable: React.FC<HRaceTableProps> = ({ data, points }) => {
|
|
|
218
208
|
))}
|
|
219
209
|
</HBox>
|
|
220
210
|
{/* PODIO */}
|
|
221
|
-
<
|
|
222
|
-
width="40%"
|
|
223
|
-
direction="column"
|
|
224
|
-
align="center"
|
|
225
|
-
style={{
|
|
226
|
-
alignSelf: "flex-start",
|
|
227
|
-
marginTop: "50px",
|
|
228
|
-
}}
|
|
229
|
-
>
|
|
211
|
+
<div style={{ alignSelf: "flex-start", marginTop: "50px", width: "40%" }}>
|
|
230
212
|
<HBox
|
|
213
|
+
width="100%"
|
|
214
|
+
direction="column"
|
|
215
|
+
align="center"
|
|
216
|
+
>
|
|
217
|
+
<HBox
|
|
231
218
|
width="100%"
|
|
232
219
|
justify="center"
|
|
233
220
|
align="flex-end"
|
|
@@ -247,11 +234,12 @@ const HRaceTable: React.FC<HRaceTableProps> = ({ data, points }) => {
|
|
|
247
234
|
src={setCharacterPicture(getPlayerProfileInfo(data?.[2]) || {}).picture}
|
|
248
235
|
margin="0 0 -60px 30px"
|
|
249
236
|
/>
|
|
237
|
+
</HBox>
|
|
238
|
+
<img src={HocIconPodioRace} alt="racePodio" width={375} />
|
|
250
239
|
</HBox>
|
|
251
|
-
|
|
252
|
-
</HBox>
|
|
240
|
+
</div>
|
|
253
241
|
</HBox>
|
|
254
242
|
);
|
|
255
243
|
};
|
|
256
244
|
|
|
257
|
-
export default HRaceTable;
|
|
245
|
+
export default HRaceTable;
|