From 380f7f3816040d74c73c52be7259bb24bf450e55 Mon Sep 17 00:00:00 2001 From: Joen Asmussen Date: Mon, 11 Jun 2018 08:34:10 +0200 Subject: [PATCH] Update the default width in the default JS components (#7198) Addressed feedback in https://github.com/WordPress/gutenberg/pull/7112#issuecomment-395074217. Updates the default column width to match that of the JS constant. --- editor/store/defaults.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/store/defaults.js b/editor/store/defaults.js index 9ee0337aa2774..f370c9dbf39ff 100644 --- a/editor/store/defaults.js +++ b/editor/store/defaults.js @@ -61,7 +61,7 @@ export const EDITOR_SETTINGS_DEFAULTS = { // This is current max width of the block inner area // It's used to constraint image resizing and this value could be overridden later by themes - maxWidth: 608, + maxWidth: 580, // Allowed block types for the editor, defaulting to true (all supported). allowedBlockTypes: true,