playbook_ui 14.17.0.pre.alpha.PLAY1967bracketlayoutphase27198 → 14.17.0.pre.alpha.PLAY1967bracketlayoutphase27205

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: 3100b608b037f647a2eb7817eb8e611835fd567929948cd07bc2702f44f5d762
4
- data.tar.gz: 0a3d7c8b581cdfcfa5d7c9840e0ed0cb97873a9baa0780919917142ed49835a3
3
+ metadata.gz: d66338cc66f0244b82fbcd320f8782c19196ab6f91e17e3a9a0f02bacac3a46b
4
+ data.tar.gz: c25ca063d64d0da5ef17477f3691a3af6eca383c23ac9ebfe8c2c26a03edb7ba
5
5
  SHA512:
6
- metadata.gz: 394d412a523574becd28011bdaf9c7d5391e38a1c5d5e063ccc0a70b7a085aba66107aa696ffe084139dff0f61c279c4f52b0ffac36511c64bd5140cb7b500c2
7
- data.tar.gz: d720ef007c16b4a8645b57b09b4f1dde46fe2046b19294fb1a0ff91e62fdd08a608de4ea049d7aa087e09ba1f63b8fb477e6510f2ba57c567f28c25e4d25502d
6
+ metadata.gz: 9375a05bb12f712de5cc1fa577fe559c1d1687372ecfdebb8b7026bd7b79f05bffc2d9cad088ac2db201b01d33dcf7c13f4736b17e2fa93fe90f1407b53aac45
7
+ data.tar.gz: 9add4571be2cbc89fba49d754332f70a05e7baa7997a18baec842c876b06bac37a4a58c5492fe310a2193205814880486ed35a60a5464b6898aa2d74fcbf5bf7
@@ -226,6 +226,12 @@ $bracket-border-width: 4px;
226
226
  display: none;
227
227
  }
228
228
 
229
+ .layout_participant,
230
+ .layout_participant_winner,
231
+ .layout_participant_self {
232
+ height: 60px;
233
+ }
234
+
229
235
  .layout_participant_winner,
230
236
  .layout_participant_self {
231
237
  position: relative;
@@ -256,7 +262,8 @@ $bracket-border-width: 4px;
256
262
  }
257
263
  .layout_round .layout_game::after,
258
264
  .connector_container,
259
- .half_box {
265
+ .half_box,
266
+ .polygon_node {
260
267
  display: none !important;
261
268
  }
262
269
  }
@@ -6,6 +6,7 @@ import { GlobalProps, globalProps, globalInlineProps } from '../../utilities/glo
6
6
  import Card from '../../pb_card/_card'
7
7
  import SectionSeparator from '../../pb_section_separator/_section_separator'
8
8
  import Body from '../../pb_body/_body'
9
+ import Flex from '../../pb_flex/_flex'
9
10
 
10
11
  type LayoutGameProps = {
11
12
  children: React.ReactNode[] | React.ReactNode,
@@ -77,20 +78,39 @@ const Game = (props: LayoutGameProps) => {
77
78
  children
78
79
  ) : (
79
80
  <Card
81
+ height="123px"
80
82
  marginY="xs"
81
83
  padding="none"
82
84
  shadow="deep"
83
85
  >
84
- <Card.Body padding="xs">
85
- <Body color="lighter">
86
- To be determined...
87
- </Body>
86
+ <Card.Body
87
+ flexGrow={1}
88
+ padding="xs"
89
+ >
90
+ <Flex
91
+ height="100%"
92
+ justify="center"
93
+ orientation="column"
94
+ >
95
+ <Body color="lighter">
96
+ To be determined...
97
+ </Body>
98
+ </Flex>
88
99
  </Card.Body>
89
100
  <SectionSeparator />
90
- <Card.Body padding="xs">
91
- <Body color="lighter">
92
- To be determined...
93
- </Body>
101
+ <Card.Body
102
+ flexGrow={1}
103
+ padding="xs"
104
+ >
105
+ <Flex
106
+ height="100%"
107
+ justify="center"
108
+ orientation="column"
109
+ >
110
+ <Body color="lighter">
111
+ To be determined...
112
+ </Body>
113
+ </Flex>
94
114
  </Card.Body>
95
115
  </Card>
96
116
  )}