@vixoniccom/footbal-score 1.0.1-beta.17 → 1.0.1-beta.18
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/CHANGELOG.md +2 -0
- package/build.zip +0 -0
- package/package.json +1 -1
- package/src/components/table-fixture/Row.tsx +6 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.0.1-beta.18](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.17...v1.0.1-beta.18) (2022-11-23)
|
|
6
|
+
|
|
5
7
|
### [1.0.1-beta.17](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.16...v1.0.1-beta.17) (2022-11-23)
|
|
6
8
|
|
|
7
9
|
### [1.0.1-beta.16](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.15...v1.0.1-beta.16) (2022-11-23)
|
package/build.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -90,7 +90,7 @@ export const Row = (item: any) => {
|
|
|
90
90
|
<div style={{
|
|
91
91
|
display: 'flex',
|
|
92
92
|
justifyContent: 'flex-end',
|
|
93
|
-
minWidth: '
|
|
93
|
+
minWidth: '150px',
|
|
94
94
|
marginRight: '5px'
|
|
95
95
|
}}>
|
|
96
96
|
<FormattedText text={nameHome} format={descriptionFormat} />
|
|
@@ -101,6 +101,7 @@ export const Row = (item: any) => {
|
|
|
101
101
|
justifyContent: 'center',
|
|
102
102
|
width: '100%',
|
|
103
103
|
alignItems: 'center',
|
|
104
|
+
marginLeft: '5px'
|
|
104
105
|
}}>
|
|
105
106
|
{
|
|
106
107
|
homeTeam ?
|
|
@@ -117,7 +118,8 @@ export const Row = (item: any) => {
|
|
|
117
118
|
display: 'flex',
|
|
118
119
|
justifyContent: 'flex-start',
|
|
119
120
|
width: '100%',
|
|
120
|
-
alignItems: 'center'
|
|
121
|
+
alignItems: 'center',
|
|
122
|
+
marginRight: '5px'
|
|
121
123
|
}}
|
|
122
124
|
>
|
|
123
125
|
{
|
|
@@ -132,7 +134,8 @@ export const Row = (item: any) => {
|
|
|
132
134
|
style={{
|
|
133
135
|
display: 'flex',
|
|
134
136
|
justifyContent: 'flex-start',
|
|
135
|
-
|
|
137
|
+
marginLeft: '10px',
|
|
138
|
+
minWidth: '150px'
|
|
136
139
|
}}
|
|
137
140
|
>
|
|
138
141
|
<FormattedText text={nameAway} format={descriptionFormat} />
|