playbook_ui 14.17.0.pre.alpha.PLAY1967bracketlayoutphase27205 → 14.17.0.pre.alpha.PLAY1967bracketlayoutphase27221

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d66338cc66f0244b82fbcd320f8782c19196ab6f91e17e3a9a0f02bacac3a46b
4
- data.tar.gz: c25ca063d64d0da5ef17477f3691a3af6eca383c23ac9ebfe8c2c26a03edb7ba
3
+ metadata.gz: 7a46a7cfd3f1c08f875db7a6363d442799c0def9c2ab1cca40e8d0d9d309dcb4
4
+ data.tar.gz: aa0f7e40b010fd97c77ad02bc3f422f997a3f812b4e018a14c5473eb07fffbd7
5
5
  SHA512:
6
- metadata.gz: 9375a05bb12f712de5cc1fa577fe559c1d1687372ecfdebb8b7026bd7b79f05bffc2d9cad088ac2db201b01d33dcf7c13f4736b17e2fa93fe90f1407b53aac45
7
- data.tar.gz: 9add4571be2cbc89fba49d754332f70a05e7baa7997a18baec842c876b06bac37a4a58c5492fe310a2193205814880486ed35a60a5464b6898aa2d74fcbf5bf7
6
+ metadata.gz: 18fecbd764fcd254da81bfa222033a4028383ffaccfd340ac23c802db2a4d0b3b5df472d817cd348fe9b9e70ec945210d7bb87aa712867edfbecfdf10e936b11
7
+ data.tar.gz: 9cf67ba6bd753534a49214e9fa590695bfefc950bbb315a7c2225ad973d8124f2ceaa5136c74b5aa81d1f787b99b640e2a97b4676c10da17da63d18485b7ad7c
@@ -232,6 +232,13 @@ $bracket-border-width: 4px;
232
232
  height: 60px;
233
233
  }
234
234
 
235
+ .layout_tbd {
236
+ height: 139px;
237
+ display: flex;
238
+ flex-direction: column;
239
+ justify-content: center;
240
+ }
241
+
235
242
  .layout_participant_winner,
236
243
  .layout_participant_self {
237
244
  position: relative;
@@ -77,42 +77,25 @@ const Game = (props: LayoutGameProps) => {
77
77
  {((!isMultiple && children) || numberOfChildren >= 1) ? (
78
78
  children
79
79
  ) : (
80
- <Card
81
- height="123px"
82
- marginY="xs"
83
- padding="none"
84
- shadow="deep"
85
- >
86
- <Card.Body
87
- flexGrow={1}
88
- padding="xs"
80
+ <div className="layout_tbd">
81
+ <Card
82
+ marginY="xs"
83
+ padding="none"
84
+ shadow="deep"
89
85
  >
90
- <Flex
91
- height="100%"
92
- justify="center"
93
- orientation="column"
94
- >
86
+ <Card.Body padding="xs">
95
87
  <Body color="lighter">
96
88
  To be determined...
97
89
  </Body>
98
- </Flex>
99
- </Card.Body>
100
- <SectionSeparator />
101
- <Card.Body
102
- flexGrow={1}
103
- padding="xs"
104
- >
105
- <Flex
106
- height="100%"
107
- justify="center"
108
- orientation="column"
109
- >
90
+ </Card.Body>
91
+ <SectionSeparator />
92
+ <Card.Body padding="xs">
110
93
  <Body color="lighter">
111
94
  To be determined...
112
95
  </Body>
113
- </Flex>
114
- </Card.Body>
115
- </Card>
96
+ </Card.Body>
97
+ </Card>
98
+ </div>
116
99
  )}
117
100
  {isOdd && numberOfGames > 1 &&
118
101
  <div