Fix overflow on mapfix/submission #293

Merged
itzaname merged 1 commits from fix/overflow into staging 2025-12-27 00:44:26 +00:00
2 changed files with 8 additions and 4 deletions

View File

@@ -77,9 +77,10 @@ export default function MapfixInfoPage() {
display: 'flex',
justifyContent: 'center',
py: 6,
px: 2
px: 2,
boxSizing: 'border-box'
}}>
<Box sx={{ width: '100%', maxWidth: '1200px' }}>
<Box sx={{ width: '100%', maxWidth: '1200px', minWidth: 0 }}>
<Breadcrumbs
separator={<NavigateNextIcon fontSize="small" />}
aria-label="breadcrumb"
@@ -111,6 +112,7 @@ export default function MapfixInfoPage() {
},
gap: 3,
width: '100%',
minWidth: 0,
}}
>
{!mapfixes || isLoading ? (

View File

@@ -77,9 +77,10 @@ export default function SubmissionInfoPage() {
display: 'flex',
justifyContent: 'center',
py: 6,
px: 2
px: 2,
boxSizing: 'border-box'
}}>
<Box sx={{ width: '100%', maxWidth: '1200px' }}>
<Box sx={{ width: '100%', maxWidth: '1200px', minWidth: 0 }}>
<Breadcrumbs
separator={<NavigateNextIcon fontSize="small" />}
aria-label="breadcrumb"
@@ -111,6 +112,7 @@ export default function SubmissionInfoPage() {
},
gap: 3,
width: '100%',
minWidth: 0,
}}
>
{!submissions || isLoading ? (