mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
Resolved height issue (#3072)
This commit is contained in:
parent
e3ad6b7cd2
commit
c49752c819
1 changed files with 1 additions and 2 deletions
|
|
@ -48,9 +48,8 @@ export const Container = ({
|
|||
}) => {
|
||||
const styles = {
|
||||
width: currentLayout === 'mobile' ? deviceWindowWidth : '100%',
|
||||
height: '100%',
|
||||
maxWidth: `${canvasWidth}px`,
|
||||
maxHeight: `${canvasHeight}px`,
|
||||
height: `${canvasHeight}px`,
|
||||
position: 'absolute',
|
||||
backgroundSize: `${canvasWidth / 43}px 10px`,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue