Skip to content

Commit

Permalink
0.6.1: Fix viewport for game log/statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaMulein committed Oct 27, 2024
1 parent b400e02 commit 8591b7c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,11 @@ Join our community of developers.

## Changelog

### Sun Oct 27 16:13:00 2024

- Version 0.6.1
- Fix game log/statistics scrollability at bottom for tab bar

### Sun Oct 27 16:00:00 2024

- Version 0.6.0
Expand Down
1 change: 1 addition & 0 deletions src/components/ScrollableContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const ScrollableContainer = styled(Box)(({ theme }) => ({
padding: theme.spacing(2),
boxSizing: 'border-box',
minHeight: 'calc(100vh - 56px)', // Subtract BottomNavigation height
paddingBottom: '56px', // Add BottomNavigation height
}));

export default ScrollableContainer;
2 changes: 1 addition & 1 deletion src/game/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { IMatsEnabled } from '@/game/interfaces/mats-enabled';
import { IGameOptions } from '@/game/interfaces/game-options';
import { deepClone } from '@/game/utils';

export const VERSION_NUMBER = '0.6.0';
export const VERSION_NUMBER = '0.6.1';

export const MIN_PLAYERS = 2;
export const MAX_PLAYERS = 6;
Expand Down

0 comments on commit 8591b7c

Please sign in to comment.