fix: admin: save button sticky mode was not effective
Massimo Melina committed
Mar 16, 2022 at 20:00 UTC
3b33128995f4eb7ba22509e7740eb769c8d474db
1 file changed
+1
-2
admin/src/App.ts
+1
-2
@@ -47,13 +47,12 @@ function Routed() {
47
sx: {
48
background: 'url(logo.svg) no-repeat right fixed',
49
backgroundSize: 'contain',
50
- px: 3,
50
+ px: { xs: 2, md: 3 },
51
pb: '1em',
52
position: 'relative',
53
display: 'flex',
54
flexDirection: 'column',
55
width: '100%',
56
- overflowX: 'auto',
56
}
57
},
58
title && h(Hidden, { mdDown: true }, h(Typography, { variant:'h2', mb:2 }, title) ),