>>2194088
Is the clicking the implication that the free space is reserved for the club overview?
Because that is still horrible design, Unity makes it pretty fucking easy to have a flexible Layout on their pages.
They could easily use the full space and make space when a club is actually selected...

Easy to do in WPF (XAML), Unity can achieve similar behavior with UXML :
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<DataGrid Grid.Row="0" ItemsSource="{Binding JobList"/>
<fm:ClubInfo Grid.Row="1" Visibility="{Binding JobDescriptionVisibility}"/>
</Grid>