@times-components/ts-components 1.167.0 → 1.168.0
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/summary/WidgetContainer.js +12 -1
- package/package.json +3 -3
- package/rnw.js +1 -1
- package/src/components/opta/football/opta-match-stats/summary/WidgetContainer.tsx +11 -0
- package/src/components/opta/football/opta-match-stats/summary/__tests__/__snapshots__/OptaMatchStatsSummary.test.tsx.snap +1 -1
|
@@ -330,6 +330,17 @@ export const WidgetContainer = styled.div<{
|
|
|
330
330
|
display: none;
|
|
331
331
|
}
|
|
332
332
|
|
|
333
|
+
// Pre-game: hide empty events area and tbody border
|
|
334
|
+
.Opta-Cf[data-period="PreMatch"] {
|
|
335
|
+
> .Opta-Cf {
|
|
336
|
+
display: none !important;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.Opta-MatchHeader tbody {
|
|
340
|
+
border-bottom: none !important;
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
|
|
333
344
|
.Opta-Cf {
|
|
334
345
|
padding-bottom: 0px !important;
|
|
335
346
|
${props =>
|