Resolved height issue (#3072)

This commit is contained in:
Muhsin Shah C P 2022-05-17 18:15:10 +05:30 committed by GitHub
parent e3ad6b7cd2
commit c49752c819
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`,
};