@times-components/ts-components 1.194.0 → 1.194.1
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 +11 -0
- package/dist/components/opta/football/opta-match-stats/matchday-live/styles/WidgetContainer.js +5 -1
- package/package.json +3 -3
- package/rnw.js +1 -1
- package/src/components/opta/football/opta-match-stats/matchday-live/__tests__/__snapshots__/OptaMatchStatsMatchdayLive.test.tsx.snap +3 -3
- package/src/components/opta/football/opta-match-stats/matchday-live/styles/WidgetContainer.tsx +4 -0
- package/src/components/opta/football/starting-formations/__tests__/__snapshots__/OptaFootballStartingFormations.test.tsx.snap +1 -1
|
@@ -15,7 +15,7 @@ exports[`OptaMatchStatsMatchdayLive should render correctly 1`] = `
|
|
|
15
15
|
class="sc-bwzfXH bRKiBp"
|
|
16
16
|
>
|
|
17
17
|
<div
|
|
18
|
-
class="sc-bxivhb
|
|
18
|
+
class="sc-bxivhb hBgFqP"
|
|
19
19
|
/>
|
|
20
20
|
<div
|
|
21
21
|
class="sc-htpNat cpuugJ"
|
|
@@ -47,10 +47,10 @@ exports[`OptaMatchStatsMatchdayLive should render correctly 1`] = `
|
|
|
47
47
|
</button>
|
|
48
48
|
</div>
|
|
49
49
|
<div
|
|
50
|
-
class="home-widget-container sc-bxivhb
|
|
50
|
+
class="home-widget-container sc-bxivhb hBgFqP"
|
|
51
51
|
/>
|
|
52
52
|
<div
|
|
53
|
-
class="away-widget-container sc-bxivhb
|
|
53
|
+
class="away-widget-container sc-bxivhb hBgFqP"
|
|
54
54
|
/>
|
|
55
55
|
<div
|
|
56
56
|
class="sc-EHOje csHaza"
|
package/src/components/opta/football/opta-match-stats/matchday-live/styles/WidgetContainer.tsx
CHANGED
|
@@ -352,10 +352,14 @@ export const WidgetContainer = styled.div<{
|
|
|
352
352
|
display: flex;
|
|
353
353
|
gap: 4px;
|
|
354
354
|
margin-top: 0;
|
|
355
|
+
flex-shrink: 0;
|
|
356
|
+
min-width: fit-content;
|
|
355
357
|
|
|
356
358
|
img.Opta-Icon {
|
|
357
359
|
width: 12px !important;
|
|
358
360
|
height: 12px !important;
|
|
361
|
+
min-width: 12px !important;
|
|
362
|
+
min-height: 12px !important;
|
|
359
363
|
flex-shrink: 0;
|
|
360
364
|
}
|
|
361
365
|
}
|