heroes-of-chess-components 0.6.36 → 0.6.37
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.
|
@@ -116,17 +116,18 @@ const HRaceTable: React.FC<HRaceTableProps> = ({ data, points }) => {
|
|
|
116
116
|
direction={isMobile ? "column" : "row"}
|
|
117
117
|
justify="center"
|
|
118
118
|
align="center"
|
|
119
|
+
gap="15px"
|
|
119
120
|
>
|
|
120
121
|
<HBox
|
|
121
122
|
borderRadius="23px"
|
|
122
|
-
width="
|
|
123
|
+
width="100%"
|
|
123
124
|
direction="column"
|
|
124
125
|
background={"purpleLight"}
|
|
125
126
|
overflowY="auto"
|
|
126
127
|
justify="flex-start"
|
|
127
128
|
align="flex-start"
|
|
128
129
|
padding="25px 10px 10px 10px"
|
|
129
|
-
margin="0
|
|
130
|
+
margin="0 0px 10px 0"
|
|
130
131
|
gap="0"
|
|
131
132
|
>
|
|
132
133
|
{data?.map((point, index) => (
|