Remove max width container (#4056)
This commit is contained in:
parent
440f5e6674
commit
50011f86f2
3 changed files with 6 additions and 12 deletions
5
.changeset/silver-queens-juggle.md
Normal file
5
.changeset/silver-queens-juggle.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"saleor-dashboard": patch
|
||||
---
|
||||
|
||||
Make Dashboard full width
|
|
@ -63,11 +63,7 @@ const AppLayout: React.FC<AppLayoutProps> = ({ children }) => {
|
|||
visible={isNavigatorVisible}
|
||||
setVisibility={setNavigatorVisibility}
|
||||
/>
|
||||
<Box
|
||||
display="grid"
|
||||
__gridTemplateColumns="auto 1fr"
|
||||
className="big-desktop-max-width"
|
||||
>
|
||||
<Box display="grid" __gridTemplateColumns="auto 1fr">
|
||||
{appState.loading && (
|
||||
<LinearProgress className={classes.appLoader} color="primary" />
|
||||
)}
|
||||
|
|
|
@ -62,10 +62,3 @@ body {
|
|||
height: auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 2048px) {
|
||||
.big-desktop-max-width {
|
||||
max-width: 1920px !important;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue