Skip to content

Commit

Permalink
Settle board sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
marein committed Mar 9, 2025
1 parent 5b70a2d commit b3a49a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ notification-list {
--grid-cols: 7;
display: grid;
grid-template-columns: repeat(var(--grid-cols), 1fr);
grid-gap: var(--tblr-spacer-2);
grid-gap: var(--tblr-spacer-1);
background-color: var(--tblr-blue);
border: var(--tblr-border-width) solid var(--tblr-border-color-translucent);
border-radius: var(--tblr-border-radius);
Expand Down
2 changes: 1 addition & 1 deletion src/ConnectFour/Port/Adapter/Http/Form/OpenType.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
*/
private static function sizes(): array
{
return ['7 x 6' => '7x6', '8 x 7' => '8x7', '9 x 8' => '9x8', '10 x 8' => '10x8'];
return ['7 x 6' => '7x6', '9 x 6' => '9x6', '11 x 8' => '11x8', '13 x 10' => '13x10'];
}

/**
Expand Down

0 comments on commit b3a49a8

Please sign in to comment.