Skip to content

Commit

Permalink
feat: increase max width of main app container
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanoshadjipetrou committed Nov 11, 2024
1 parent 8a41bd2 commit 5ce0122
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/app/pages/geography/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ export const Geography: React.FC = () => {
</Box>
{fullWidthDivider}
<Box
padding="32px"
sx={{
"@media (max-width: 767px)": {
padding: "16px 0",
Expand Down
15 changes: 15 additions & 0 deletions src/app/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,21 @@ const theme = createTheme({
},
},
},
MuiContainer: {
styleOverrides: {
root: {
"@media (min-width: 1200px)": {
maxWidth: "100%",
},
"@media (min-width: 1440px)": {
maxWidth: "1440px",
},
"@media (min-width: 1200px) and (max-width: 1490px)": {
padding: "0 50px",
},
},
},
},
MuiAccordion: {
styleOverrides: {
root: {
Expand Down

0 comments on commit 5ce0122

Please sign in to comment.