mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
Fixes canvas max-width (#1637)
This commit is contained in:
parent
f75b5eb4d4
commit
315760b6f8
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ export const Container = ({
|
|||
const styles = {
|
||||
width: currentLayout === 'mobile' ? deviceWindowWidth : '100%',
|
||||
height: 2400,
|
||||
maxWidth: '1292px',
|
||||
maxWidth: `${canvasWidth}px`,
|
||||
position: 'absolute',
|
||||
backgroundSize: `${canvasWidth / 43}px 10px`,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue