@vixoniccom/footbal-score 1.0.1-beta.19 → 1.0.1-beta.20
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 +2 -4
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.20](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.19...v1.0.1-beta.20) (2022-11-24)
|
|
6
|
+
|
|
5
7
|
### [1.0.1-beta.19](https://gitlab.com/mandomedio/vixonic/football-score/compare/v1.0.1-beta.18...v1.0.1-beta.19) (2022-11-23)
|
|
6
8
|
|
|
7
9
|
### [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)
|
package/build.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -94,7 +94,7 @@ export const Row = (item: any) => {
|
|
|
94
94
|
style={{
|
|
95
95
|
display: 'flex',
|
|
96
96
|
justifyContent: 'flex-end',
|
|
97
|
-
|
|
97
|
+
}}
|
|
98
98
|
>
|
|
99
99
|
<Status status={fixture.status.short} />
|
|
100
100
|
|
|
@@ -107,8 +107,7 @@ export const Row = (item: any) => {
|
|
|
107
107
|
<div style={{
|
|
108
108
|
display: 'flex',
|
|
109
109
|
justifyContent: 'flex-end',
|
|
110
|
-
|
|
111
|
-
marginRight: '5px'
|
|
110
|
+
marginRight: '10px'
|
|
112
111
|
}}>
|
|
113
112
|
<FormattedText text={nameHome} format={descriptionFormat} />
|
|
114
113
|
</div>
|
|
@@ -152,7 +151,6 @@ export const Row = (item: any) => {
|
|
|
152
151
|
display: 'flex',
|
|
153
152
|
justifyContent: 'flex-start',
|
|
154
153
|
marginLeft: '10px',
|
|
155
|
-
minWidth: '150px'
|
|
156
154
|
}}
|
|
157
155
|
>
|
|
158
156
|
<FormattedText text={nameAway} format={descriptionFormat} />
|