Skip to content

Commit

Permalink
fixing missing styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ajesk committed Aug 23, 2024
1 parent 810984a commit dcc8984
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const App = () => (
direction="column"
justify="center"
alignContent="center"
sx={{ padding: useTheme().spacing(1) }}
sx={{ padding: useTheme().spacing(2) }}
>
<PlayerContent />
<Import />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Content/PlayerContent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const mapStateToProps = (state) => state;

const PlayerContent = ({ visibilityFilters, players = [] }) => players.length ?
(
<Box>
<Box sx={{width: '100%'}}>
<Paper>
<Grid container direction="row" justify="space-between">
{visibilityFilters[VisibilityFilters.SHOW_AVAILABLE] &&
Expand Down

0 comments on commit dcc8984

Please sign in to comment.