From 55f70550b62d5618ca6eb2310940563c0b1b6ac0 Mon Sep 17 00:00:00 2001 From: Eugene Rodionov Date: Thu, 23 Jul 2015 09:16:43 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20maxWidth=20=E2=86=92=20width?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/react/DebugPanel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/react/DebugPanel.js b/src/react/DebugPanel.js index d999c84d..8827db26 100644 --- a/src/react/DebugPanel.js +++ b/src/react/DebugPanel.js @@ -20,7 +20,7 @@ export function getDefaultStyle(props) { top: top ? 0 : undefined, bottom: bottom ? 0 : undefined, maxHeight: (bottom && top) ? '100%' : '20%', - maxWidth: (left && right) ? '100%' : '25%', + width: (left && right) ? '100%' : '25%', wordWrap: 'break-word' }; }