From 2b308b2f3a6cc69e0c9986f86a5b52186d77abb8 Mon Sep 17 00:00:00 2001 From: Sherfin Shamsudeen Date: Thu, 25 Nov 2021 19:34:47 +0530 Subject: [PATCH] Fix width for iFrame and PasswordInput (#1463) --- frontend/src/Editor/Components/components.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Editor/Components/components.js b/frontend/src/Editor/Components/components.js index 21e099c48c..f7e1a4f4f6 100644 --- a/frontend/src/Editor/Components/components.js +++ b/frontend/src/Editor/Components/components.js @@ -363,7 +363,7 @@ export const componentTypes = [ description: 'Password input field for forms', component: 'PasswordInput', defaultSize: { - width: 210, + width: 4, height: 30, }, others: { @@ -1285,7 +1285,7 @@ export const componentTypes = [ displayName: 'Iframe', description: 'Display an Iframe', defaultSize: { - width: 560, + width: 10, height: 310, }, component: 'IFrame',