From 540e9e506cd552a1a79a2d23eb55890c289e24c9 Mon Sep 17 00:00:00 2001 From: Nic Aitch Date: Tue, 11 Aug 2015 23:09:20 -0500 Subject: [PATCH] Add box shadow to DebugPanel for depth --- src/react/DebugPanel.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/react/DebugPanel.js b/src/react/DebugPanel.js index 41e8d8e4..3932a8e3 100644 --- a/src/react/DebugPanel.js +++ b/src/react/DebugPanel.js @@ -24,7 +24,8 @@ export function getDefaultStyle(props) { maxWidth: (left && right) ? '100%' : '20%', minWidth: 300, wordWrap: 'break-word', - boxSizing: 'border-box' + boxSizing: 'border-box', + boxShadow: '-2px 0 7px 0 rgba(0, 0, 0, 0.5)' }; }