Skip to content

Commit

Permalink
[frontend] Fix on alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kedae committed Sep 26, 2024
1 parent f8e12bb commit 841503b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const useStyles = makeStyles<Theme, { bannerHeightNumber: number }>((theme) => c
alignItems: 'center',
},
container: {
padding: theme.spacing(1),
padding: theme.spacing(2),
height: '100%',
},
mainButton: ({ bannerHeightNumber }) => ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import DataTable from '../../../../components/dataGrid/DataTable';

// Deprecated - https://mui.com/system/styles/basics/
// Do not use it for new code.
const useStyles = makeStyles<Theme>((theme) => ({
const useStyles = makeStyles<Theme>(() => ({
createButton: {
position: 'fixed',
bottom: 30,
Expand All @@ -60,7 +60,6 @@ const useStyles = makeStyles<Theme>((theme) => ({
zIndex: 1001,
},
container: {
padding: theme.spacing(2),
width: '100%',
height: '100%',
maxHeight: '100%',
Expand Down

0 comments on commit 841503b

Please sign in to comment.